-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 944 Bytes
/
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
{
"name": "cammanderson/phruts",
"description": "PHP Implementation of Struts",
"keywords": ["struts", "php"],
"license": "LGPL-3.0",
"authors": [
{
"name": "Cameron Manderson",
"email": "[email protected]",
"role": "developer"
}
],
"type": "library",
"autoload": {
"psr-4": {
"Phruts\\": "src"
}
},
"require": {
"php": ">=5.3.7",
"cammanderson/phigester": "~1.0",
"symfony/http-foundation" : "*",
"silex/silex": "~1.2",
"psr/log" : "*"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"satooshi/php-coveralls": "dev-master",
"mikey179/vfsStream" : "1.*",
"symfony/browser-kit": ">=2.3,<2.4-dev",
"symfony/css-selector": ">=2.3,<2.4-dev"
},
"suggest": {
},
"prefer-stable": true,
"minimum-stability": "dev"
}