This repository has been archived by the owner on Jun 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
/
composer.json
54 lines (54 loc) · 1.71 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
{
"name" : "lyrixx/silex-kitchen-edition",
"type" : "library",
"description" : "A Silex Edition. This project is a base for your silex applications.",
"keywords" : ["framework"],
"homepage" : "http://lyrixx.github.com/Silex-Kitchen-Edition/",
"license" : "MIT",
"authors" : [
{
"name" : "Grégoire Pineau",
"email" : "[email protected]"
}
],
"require": {
"php" : ">=5.5.9",
"doctrine/dbal" : "^2.5.5",
"monolog/monolog" : "^1.21.0",
"silex/silex" : "^2.0.4",
"silex/web-profiler" : "^2.0.5",
"symfony/config" : "^3.3",
"symfony/console" : "^3.3",
"symfony/finder" : "^2.2",
"symfony/form" : "^3.3",
"symfony/security" : "^3.3",
"symfony/translation" : "^3.3",
"symfony/twig-bridge" : "^3.3",
"symfony/validator" : "^3.3",
"symfony/yaml" : "^3.3",
"twig/twig" : "^1.23",
"twitter/bootstrap" : "^3.3.6"
},
"require-dev": {
"symfony/browser-kit": "^3.3",
"symfony/css-selector": "^3.3",
"symfony/dom-crawler": "^3.3",
"symfony/phpunit-bridge": "^3.3"
},
"scripts": {
"post-install-cmd": "App\\Composer\\Script::install",
"post-update-cmd": "App\\Composer\\Script::install",
"compile": [
"cp resources/config/heroku.php resources/config/prod.php",
"npm install"
]
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/App"
}
}
}