-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
38 lines (38 loc) · 1.04 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
{
"name": "maxh/php-nominatim",
"type": "library",
"description": "Wrapper for Nominatim API",
"keywords": ["geo", "geolocation", "open street map", "osm", "nominatim", "web service"],
"homepage": "https://github.com/maxhelias/php-nominatim",
"license": "MIT",
"authors": [
{
"name": "Maxime Helias",
"email": "[email protected]",
"homepage": "http://maximehelias.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "@stable"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.2",
"friendsofphp/php-cs-fixer": "dev-master",
"phpro/grumphp-shim": "^1.4"
},
"autoload": {
"psr-4": { "maxh\\Nominatim\\": "src"}
},
"autoload-dev": {
"psr-4": {
"maxh\\Nominatim\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix"
}
}