forked from silverorange/json-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 938 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 938 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": "silverorange/json-api-client",
"description": "A simple JSON API v1.0 client written in PHP",
"type": "library",
"keywords": [ "json-api", "json", "api" ],
"homepage": "https://github.com/silverorange/json-api",
"license": "MIT",
"authors": [
{
"name": "Charles Waddell",
"email": "charles@silverorange.com"
}
],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "^6.2.2"
},
"require-dev": {
"silverorange/coding-standard": "^1.0.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"beautifier": [
"phpcbf --standard=Silverorange src/"
],
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"autoload": {
"psr-4": { "silverorange\\JsonApiClient\\" : "src/" }
}
}