forked from invoiceninja/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 810 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (35 loc) · 810 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
33
34
35
36
{
"name": "invoiceninja/sdk-php",
"description": "The Invoice Ninja v5 PHP SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Bomba",
"email": "turbo124@gmail.com"
}
],
"autoload": {
"psr-4": {"InvoiceNinja\\Sdk\\": "src/"}
},
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"fakerphp/faker": "^1.16",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"InvoiceNinja\\Sdk\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}