gibilogic/crud-bundle
最新稳定版本:2.0.7
Composer 安装命令:
composer require gibilogic/crud-bundle
包简介
GiBiLogic CRUD Bundle
关键字:
README 文档
README
A Symfony 2 bundle that contains simple CRUD-oriented services and helpers.
This bundle helps creating CRUD systems for Doctrine entities by:
- simplifying filtering and sorting operations
- handling the (optional) pagination
- making the hydration mode accessible to top-level methods
This bundle uses the following libraries/framework:
- Symfony 2 HTTP kernel
- Doctrine ORM
ATTENTION - Do not use the older 1.* version: it won't be supported any more. So, switch to the 2.* version and happy coding!
Installation
Add this bundle to the composer.json of your application with the console command:
composer require gibilogic/crud-bundle
Or, if you are using composer.phar, use the console command:
php composer.phar require gibilogic/crud-bundle
Then add the bundle to your app's AppKernel class:
use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Gibilogic\CrudBundle\GibilogicCrudBundle(), // ... ); // ... return $bundles; } // ... }
Configuration
No app configuration is needed; just install the bundle and create your entities classes (repositories, services and controllers).
Usage
Click here to read the full bundle's documentation.
统计信息
- 总下载量: 2.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-24