-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
45 lines (45 loc) · 1011 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
{
"name": "billbee/billbee-api",
"description": "The official Billbee API SDK for PHP",
"type": "library",
"require": {
"php-64bit": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.0",
"psr/log": "^1.1.0 || ^2.0.0 || ^3.0.0",
"jms/serializer": "^3.18"
},
"require-dev": {
"phpunit/phpunit": "^9.4.1",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^1.8.2"
},
"license": "MIT",
"authors": [
{
"name": "Julian Finkler",
"email": "julian@billbee.io"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BillbeeDe\\BillbeeAPI\\": "src/",
"BillbeeDe\\Tests\\BillbeeAPI\\": "tests/"
}
},
"scripts": {
"fix-cs": [
"php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR2",
"php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR2"
],
"analyse": "phpstan analyse"
},
"archive": {
"exclude": [
"/tests",
"/doc"
]
}
}