-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.24 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
38
39
40
41
42
43
{
"name": "koff/crud-maker-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["generator", "code generator", "scaffolding", "scaffold", "crud generator"],
"description": "This bundle is extension to `symfony/maker-bundle`. It allows you to create simple crud with just one command.",
"authors": [
{
"name": "Sadicov Vladimir",
"homepage": "https://koff.pro"
}
],
"require": {
"php": "^7.0.8",
"symfony/config": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/maker-bundle": "<1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"symfony/phpunit-bridge": "^3.4|^4.0",
"doctrine/orm": "^2.5.11"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": { "Koff\\Bundle\\CrudMakerBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Koff\\Bundle\\CrudMakerBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}