-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.01 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
44
{
"name": "artgris/page-bundle",
"type": "symfony-bundle",
"description": "add a page manager to EasyAdminBundle for Symfony",
"keywords": [
"backend",
"admin",
"generator",
"easyadmin"
],
"license": "MIT",
"authors": [
{
"name": "artgris",
"email": "[email protected]"
}
],
"require": {
"a2lix/translation-form-bundle": "^3.2",
"beberlei/doctrineextensions": "^1.3",
"easycorp/easyadmin-bundle": "^4.0",
"knplabs/doctrine-behaviors": "^2.6",
"stof/doctrine-extensions-bundle": "^1.7"
},
"require-dev": {
"psr/log": "~1.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"php-cs-fixer": "php-cs-fixer"
},
"autoload-dev": {
"psr-4": {
"Artgris\\Bundle\\PageBundle\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Artgris\\Bundle\\PageBundle\\": "src/"
}
}
}