-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.26 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
45
46
47
48
49
{
"name": "elao/admin-theme-bundle",
"description": "Twig template set for elao-admin",
"type": "symfony-bundle",
"homepage": "https://github.com/Elao/ElaoAdminThemeBundle",
"license": "MIT",
"authors": [
{
"name": "Elao",
"homepage": "https://www.elao.com"
},
{
"name": "Thomas Jarrand",
"email": "thomas.jarrand@elao.com"
}
],
"require": {
"php": "^8.0",
"twig/twig": "^2.12|^3.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/console": "^5.1|^6.0",
"symfony/twig-bridge": "^5.1|^6.0",
"symfony/finder": "^5.1|^6.0",
"symfony/filesystem": "^5.1|^6.0"
},
"autoload": {
"psr-4": {
"Elao\\Bundle\\AdminThemeBundle\\": "."
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}