-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
37 lines (36 loc) · 1.17 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "petkopara/crud-generator-bundle",
"description": "Symfony3 bundle for CRUD generation with pagination, filtering, sorting, page size, bulk delete and bootstrap3 markup. This Generator supports Doctrine association mapping.",
"keywords": ["crud", "generator", "symfony3", "pagination", "filter", "bootstrap3", "doctrine", "bulk", "sorting", "page size"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Petko Petkov",
"email": "[email protected]"
}
],
"require": {
"symfony/symfony": "~2.8|~3.0",
"sensio/generator-bundle": "~3.0",
"doctrine/doctrine-bundle": "^1.6",
"pagerfanta/pagerfanta": "1.0.*@dev",
"lexik/form-filter-bundle": "~5.0",
"petkopara/multi-search-bundle": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": { "Petkopara\\CrudGeneratorBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}