-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "spatie/bpost-address-webservice",
"description": "API wrapper for bpost's address webservice",
"keywords": [
"spatie",
"bpost-address-webservice"
],
"homepage": "https://github.com/spatie/bpost-address-webservice",
"license": "MIT",
"authors": [
{
"name": "Sebastian De Deyne",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^7.1|^8.0",
"guzzlehttp/guzzle": "^6.3.3|^7.0"
},
"require-dev": {
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.4|^8.5|^9",
"spatie/phpunit-snapshot-assertions": "^2|^3|^4"
},
"autoload": {
"psr-4": {
"Spatie\\BpostAddressWebservice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\BpostAddressWebservice\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}