ywoume/ imkcrudbundle
此包最新版本(1.2.1)没有提供许可信息。
CRUD过程简化包
1.2.1
2020-02-11 21:11 UTC
Requires
- php: ^7.1.3
- doctrine/orm: *
- symfony/form: *
This package is auto-updated.
Last update: 2024-09-29 05:42:30 UTC
README
composer require ywoume/imkcrudbundle
将以下内容复制并粘贴到您的终端中。
2 - 在symfony中收费
在 Bundles.php
中添加以下行
// file: config/bundle.php ImkCrudBundle\ImkCrudBundle::class => ['all' => true],
3 - 配置
在 packages/
文件夹中添加 imk_crud.yaml
并将其粘贴到 imk_crud: ~
内部
默认配置
这是一个实体默认配置的示例
imk_crud: entity: - Users: crud: true create: true read: true list: true delete: true update: true