-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.62 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
59
60
61
{
"name": "billbee/foreign-systems-sdk",
"description": "The SDK for connecting foreign systems to Billbee",
"type": "library",
"require": {
"php-64bit": "^8.2",
"psr/http-message": "^2.0",
"jms/serializer": "^3.30.0",
"mintware-de/streams": "^3.0",
"mark-gerarts/auto-mapper-plus": "^1.4",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0",
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan": "^1.11"
},
"suggest": {
"ext-xdebug": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Billbee\\ForeignSystemsSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Billbee\\Tests\\ForeignSystemsSdk\\": "tests/"
}
},
"authors": [
{
"name": "Julian Finkler",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"fix-cs": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12"
],
"fix-cs:dry-run": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12 --dry-run",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12 --dry-run"
],
"phpstan": [
"./vendor/bin/phpstan"
],
"test": [
"./vendor/bin/phpunit"
]
},
"archive": {
"exclude": [
"/tests"
]
}
}