-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
59
60
{
"type": "symfony-bundle",
"license": "MIT",
"name": "suminagashi/orchestra",
"description": "Sleek admin for your symfony projects",
"keywords": ["admin","backoffice", "spa"],
"version": "0.1.0",
"authors": [
{
"name": "Louis Harang",
"email": "[email protected]",
"homepage": "https://narah.now.sh",
"role": "Developer"
},
{
"name": "Hugo Knorr",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"doctrine/annotations": "^1.0",
"symfony/asset": "5.1.*",
"symfony/console": "5.1.*",
"symfony/dotenv": "5.1.*",
"symfony/finder": "5.1.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.1.*",
"symfony/property-access": "5.1.*",
"symfony/property-info": "5.1.*",
"symfony/twig-bundle": "5.1.*",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "5.1.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Suminagashi\\OrchestraBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OrchestraBundleTests\\": "tests/"
}
}
}