-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.08 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
45
46
{
"name" : "aropixel/admin-bundle",
"description" : "Admin Aropixel",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Joël Gomez Caballe",
"email" : "joel.gomez@aropixel.com"
}],
"keywords" : [
"aropixel admin bundle"
],
"license" : [
"MIT"
],
"autoload" : {
"psr-4" : {
"Aropixel\\AdminBundle\\" : ""
}
},
"require" : {
"friendsofsymfony/jsrouting-bundle": "^2.3",
"knplabs/knp-menu-bundle": "^3.0",
"knplabs/knp-paginator-bundle": "^5.0",
"liip/imagine-bundle": "^2.1",
"stof/doctrine-extensions-bundle": "^1.6",
"symfony/mailer": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"twig/intl-extra": "^2.12|^3.0",
"doctrine/orm": "^2.9",
"knplabs/doctrine-behaviors": "^2.1",
"a2lix/translation-form-bundle": "^3.0"
},
"scripts": {
"auto-scripts": {
"aropixel:admin:setup": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}