-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
38 lines (38 loc) · 903 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
38
{
"name": "psx/psx",
"description": "PHP REST Framework",
"keywords": ["REST", "Api", "Framework", "Oauth"],
"homepage": "http://phpsx.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
"email": "[email protected]",
"homepage": "http://k42b3.com"
}
],
"require": {
"php": ">=5.4",
"doctrine/annotations": "~1.2",
"doctrine/dbal": "~2.5",
"jms/serializer": "~1.1.0",
"monolog/monolog": "~1.0",
"psr/http-message": "~1.0",
"psr/log": "~1.0",
"symfony/console": "~2.8",
"symfony/dependency-injection": "~2.8",
"symfony/event-dispatcher": "~2.8",
"symfony/yaml": "~2.8",
"zendframework/zend-diactoros": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phpunit/dbunit": "~1.4"
},
"bin": ["bin/psx"],
"autoload": {
"psr-0": {
"PSX\\": "library/"
}
}
}