-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.22 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
{
"name": "php-heroku-client/php-heroku-client",
"type": "library",
"description": "A PHP client for the Heroku Platform API",
"keywords": ["heroku"],
"homepage": "https://github.com/TransitScreen/php-heroku-client",
"license": "MIT",
"authors": [
{
"name": "Ethan Pooley",
"homepage": "https://github.com/ethanpooley/",
"role": "Developer"
}
],
"require": {
"php": "^7.3||^8.0",
"guzzlehttp/psr7": "^2.0",
"php-http/message": "^1.5",
"php-http/curl-client": "^2.1",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"ext-curl": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "^9.3",
"phpunit/php-code-coverage": "^9.0"
},
"autoload": {
"psr-4": {
"HerokuClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HerokuClient\\Test\\": "tests"
}
},
"scripts": {
"test": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}