forked from dcousineau/orlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.03 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
{
"name": "phelipebf/orlex",
"description": "Extensão do Silex for providing an organized, annotated controller infrastructure, designed to blend the simplicity of Silex and organization of Symfony 2",
"keywords": ["framework", "silex"],
"license": "MIT",
"authors": [
{
"name": "Phelipe Folgierini",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"silex/silex": "~2.0",
"doctrine/annotations": "~1.0",
"doctrine/cache": "~1.0",
"symfony/config": "~2.8|3.0.*"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"mockery/mockery": "~0.8"
},
"suggest": {
"twig/twig": "For use by the Orlex Twig Controller Trait",
"symfony/form": "For use by the Orlex Form Controller Trait",
"syfmony/console": "For use with the console helpers"
},
"autoload": {
"psr-0": { "Orlex": "src/" }
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev"
}