tmsolution / datagrid-bundle
Symfony2 bundle for logging
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- apy/datagrid-bundle: 2.1.15
- symfony/framework-bundle: 2.*
- tmsolution/model-bundle: 1.*
This package is not auto-updated.
Last update: 2024-10-26 18:22:47 UTC
README
by Damian Piela damian.piela@tmsolution.pl
Description
DataGridBundle is a set of tools for presenting entity data in a coherent and legible form. Additionally, it allows you to make use of new functionalities by adding supplementary buttons, or to display adjustable amount of data acoording to predefined values. DataGridBundle uses apy/datagrid-bundle.
Installation
In order to install the bundle, add:
//composer require
"tmsolution/datagrid-bundle": "1.*"
"apy/datagrid-bundle": "2.1.15"
to your project's composer.json
file. Later, enable your bundle in the app's kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new APY\DataGridBundle\APYDataGridBundle(),
new Core\ModelBundle\CoreModelBundle(),
new TMSolution\DataGridBundle\TMSolutionDataGridBundle()
);
}