-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
56 lines (56 loc) · 1.45 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
{
"name": "petfinder-com/petfinder-php",
"description": "Petfinder API client",
"keywords": [
"pets",
"animals",
"petfinder"
],
"homepage": "https://www.petfinder.com/developers/",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Petfinder.com",
"homepage": "https://www.petfinder.com/"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"mtdowling/jmespath.php": "^2.2",
"php-http/async-client-implementation": "^1.0",
"php-http/client-common": "^1.6 || ^2.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"guzzlehttp/psr7": "^1.5",
"php-coveralls/php-coveralls": "^2.1",
"php-http/guzzle6-adapter": "^2.0",
"php-http/mock-client": "^1.3",
"phpstan/phpstan": "^0.11.4",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Petfinder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Petfinder\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix -v"
},
"config": {
"sort-packages": true
}
}