-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
47 lines (47 loc) · 965 Bytes
/
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
{
"name": "invoiced/invoiced",
"description": "Invoiced PHP Library",
"keywords": [
"invoiced",
"api",
"sdk",
"invoicing",
"billing",
"subscription billing",
"metered billing",
"estimates",
"credit notes",
"usage billing",
"recurring billing",
"payment plans",
"payments"
],
"homepage": "https://invoiced.com/",
"license": "MIT",
"authors": [
{
"name": "Invoiced",
"homepage": "https://github.com/invoiced/invoiced-php"
}
],
"require": {
"php": ">=5.4",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"firebase/php-jwt": "~5.0|~6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"yoast/phpunit-polyfills": "^1.0",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": { "Invoiced\\" : "src/" }
},
"autoload-dev": {
"psr-4": {
"Invoiced\\Tests\\": "tests/"
}
}
}