-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 743 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 743 Bytes
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
{
"name": "zlob/php-json-server",
"type": "library",
"description": "simple REST API json server",
"keywords": ["json", "server", "REST API", "RESTful API"],
"license": "MIT",
"authors": [
{
"name": "Makin Vladislav",
"email": "vamakin@gmail.com",
"homepage": "https://github.com/Zlob",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"nikic/php-parser": "~1.0",
"doctrine/inflector": "^1.0",
"symfony/http-foundation": "2.7.*",
"symfony/console": "2.7.*",
"fzaninotto/faker": "1.5.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"codeclimate/php-test-reporter": "~0.1.2"
},
"autoload": {
"psr-4": {
"JsonServer\\": "src/"
}
}
}