forked from maxhelias/php-nominatim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.45 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
{
"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.0",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "@stable"
},
"require-dev": {
"phpunit/phpunit": "6.5.*",
"squizlabs/php_codesniffer": "dev-master",
"friendsofphp/php-cs-fixer": "dev-master",
"phpro/grumphp": "dev-master"
},
"autoload": {
"psr-4": { "maxh\\Nominatim\\": "src"}
},
"autoload-dev": {
"psr-4": {
"maxh\\Nominatim\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff --verbose --config=.php_cs",
"doc": "phpdoc -d src/ -t docs/"
}
}