-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aropixel\\AdminBundle\\Tests\\": "tests/"
}
},
"require": {
"ext-intl": "*",
"doctrine/doctrine-bundle": "^2.13 || ^3.0",
"league/flysystem-bundle": "^3",
"liip/imagine-bundle": "^2.10",
"stof/doctrine-extensions-bundle": "^1.7",
"symfony/orm-pack": "2.4.1|2.5.0",
"symfony/asset": "^7.0 || ^8.0",
"symfony/mailer": "^7.0 || ^8.0",
"symfony/form": "^7.0 || ^8.0",
"symfony/flex": "^1|^2",
"symfony/framework-bundle": "^7.0 || ^8.0",
"symfony/security-bundle": "^7.0 || ^8.0",
"symfony/http-client": "^7.0 || ^8.0",
"symfony/serializer": "^7.0 || ^8.0",
"symfony/stimulus-bundle": "^2.32 || ^3.0",
"symfony/string": "^7.0 || ^8.0",
"symfony/translation": "^7.0 || ^8.0",
"symfony/ux-icons": "^2.0 || ^3.0",
"symfony/validator": "^7.0 || ^8.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"twig/intl-extra": "^2.12|^3.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^4.0"
},
"scripts": {
"symfony-scripts": [
"rm -rf var/cache/*",
"php bin/console assets:install public --relative"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
}
}