-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1.02 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
{
"name": "malukenho/silex-manager",
"description": "A simple scaffold to create crap CRUD based application using Silex",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/malukenho/silex-manager",
"keywords": [
"php",
"scaffold",
"silex",
"development"
],
"authors": [
{
"name": "Jefersson Nathan",
"email": "[email protected]"
}
],
"require": {
"php": "~5.6|~7.0",
"silex/silex": "^1.3",
"twig/twig": "^1.21",
"symfony/yaml": "^2.7",
"symfony/validator": "^2.7",
"symfony/config": "^2.7",
"symfony/translation": "^2.7",
"symfony/twig-bridge": "^2.7",
"symfony/form": "^2.7",
"symfony/security-csrf": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"fabpot/php-cs-fixer": "^1.10"
},
"autoload": {
"psr-4": {
"Manager\\": "src/"
}
}
}