-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "geo6/geocoder-php-bpost-provider",
"type": "library",
"description": "Geocoder bpost adapter",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Jonathan Beliën",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"geocoder-php/common-http": "^4.1",
"willdurand/geocoder": "^4.0"
},
"provide": {
"geocoder-php/provider-implementation": "1.0"
},
"require-dev": {
"geocoder-php/provider-integration-tests": "^1.0",
"php-http/curl-client": "^2.0",
"php-http/message": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Geocoder\\Provider\\bpost\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-ci": "phpunit --coverage-text --coverage-clover=coverage.clover"
}
}