-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.47 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
{
"name": "pondersource/billing-api1",
"description": "A Billing API for Heroku, Github, AWS",
"homepage": "https://github.com/pondersource/billing-api",
"license": "MIT",
"autoload": {
"psr-4": {
"PonderSource\\HerokuApi\\": "src/Heroku/",
"PonderSource\\GoogleApi\\": "src/Google/",
"PonderSource\\Library\\": "src/Library/",
"PonderSource\\GitHubApi\\": "src/GitHub/",
"PonderSource\\AWSApi\\": "src/AWS/",
"PonderSource\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PonderSource\\HerokuApi\\Test\\": "tests"
}
},
"scripts": {
"test": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"
]
},
"authors": [
{
"name": "Pondersource",
"role": "Software Engineer"
}
],
"require": {
"php": "^7.3||^8.0",
"guzzlehttp/psr7": "^1.0",
"php-http/message": "^1.5",
"php-http/curl-client": "^2.1",
"psr/http-message": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"phpunit/phpunit": "^9.5",
"google/cloud-billing": "^1.3",
"google/cloud-storage": "^1.26",
"sabre/xml": "^2.2"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"ext-curl": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "^9.3",
"phpunit/php-code-coverage": "^9.0"
}
}