-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
68 lines (68 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ppi/framework",
"description": "PPI Framework - The PHP Interoperability Framework!",
"homepage": "http://www.ppi.io",
"license": "MIT",
"keywords": [
"framework"
],
"type": "library",
"authors": [
{
"name": "Paul Dragoonis",
"email": "paul@ppi.io"
},
{
"name": "Vítor Brandão",
"email": "vitor@ppi.io"
},
{
"name": "PPI Community",
"homepage": "http://www.ppi.io/contributors"
}
],
"require": {
"php": ">=5.4",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"symfony/class-loader": "^2.7",
"symfony/dependency-injection": "^2.7",
"symfony/config": "^2.7",
"symfony/console": "^2.7",
"symfony/debug": "^2.7",
"symfony/finder": "^2.7",
"symfony/http-foundation": "^2.7",
"symfony/routing": "^2.7",
"symfony/templating": "^2.7",
"symfony/yaml": "^2.7",
"symfony/http-kernel": "^2.7",
"symfony/framework-bundle": "^2.7",
"zendframework/zend-eventmanager": "^2.3",
"zendframework/zend-modulemanager": "^2.3",
"zendframework/zend-servicemanager": "^2.3",
"zendframework/zend-loader": "^2.3",
"zendframework/zend-view": "^2.3",
"symfony-cmf/routing": "1.3.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.5",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"roave/security-advisories": "Prevents installation of composer packages with known security vulnerabilities"
},
"autoload": {
"psr-4": {
"PPI\\Framework\\": "src/",
"PPI\\FrameworkTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"scripts": {
"coveralls": ".bin/coveralls"
}
}