-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 1023 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
39
40
41
{
"name": "jk/restserver",
"type": "library",
"description": "A PHP REST server for providing a very light-weight REST API without aweful routing configuration",
"require": {
"php": "^5.6|~7|~8",
"ext-json": "*",
"ext-pcre": "*",
"ext-reflection": "*"
},
"require-dev": {
"phpunit/phpunit": "~4|~0",
"mockery/mockery": ">=0.9.3",
"fabpot/php-cs-fixer": "~1|~0",
"squizlabs/php_codesniffer": "~2|~0",
"codeclimate/php-test-reporter": "dev-master"
},
"suggest": {
"ext-simplexml": "*"
},
"autoload": {
"psr-0": {
"JK\\RestServer\\": "src/",
"JK\\RestServer\\Tests\\": "tests/"
}
},
"homepage": "https://github.com/jk/RestServer",
"license": "MIT",
"authors": [
{
"name": "Jens Kohl",
"email": "[email protected]",
"role": "Lead",
"homepage": "https://github.com/jk"
}
],
"support": {
"issues": "https://github.com/jk/restserver/issues",
"wiki": "https://github.com/jk/restserver/wiki"
}
}