-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 loc) · 1.41 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
53
54
55
56
57
58
{
"name": "billbee/custom-shop-api",
"description": "Implementation of the Billbee custom shop API in PHP",
"type": "library",
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^1.0",
"jms/serializer": "^1.14.0 || ^3.14.0",
"ralouphie/getallheaders": "~3.0",
"mintware-de/streams": "^2.0.0",
"ext-json": "*",
"doctrine/annotations": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^v3.8.0",
"phpstan/phpstan": "^1.4"
},
"suggest": {
"ext-xdebug": "*"
},
"license": "MIT",
"authors": [
{
"name": "Julian Finkler",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Billbee\\CustomShopApi\\": "src/",
"Billbee\\Tests\\CustomShopApi\\": "tests/"
}
},
"scripts": {
"fix-cs": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR2",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR2"
],
"fix-cs:dry-run": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR2 --dry-run",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR2 --dry-run"
],
"phpstan": [
"./vendor/bin/phpstan"
],
"test": [
"./vendor/bin/phpunit"
]
},
"archive": {
"exclude": [
"/docs",
"/tests"
]
}
}