-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "misantron/silex-skeleton",
"description": "Simple skeleton application on Silex framework",
"keywords": ["php", "silex", "framework", "skeleton", "application"],
"homepage": "http://github.com/misantron/silex-basic-app",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Alexandr Ivanov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"silex/silex": "~2.0",
"misantron/silex-config-provider": "~1.2",
"ziadoz/silex-capsule": "~2.0",
"symfony/console": "~4.1",
"symfony/event-dispatcher": "~4.1",
"symfony/twig-bridge": "~4.1",
"symfony/monolog-bridge": "~4.1",
"robmorgan/phinx": "~0.10"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"symfony/browser-kit": "~4.1"
},
"autoload": {
"psr-4": {
"Application\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Application\\Tests\\": "tests/"
}
}
}