-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.68 KB
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": "php-collective/google-maps-services",
"description": "PHP client library(SDK) for Google Maps API Web Services",
"keywords": ["Google maps", "services", "php", "sdk"],
"homepage": "https://github.com/php-collective/google-maps-services",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/php-collective/google-maps-services/issues",
"source": "https://github.com/php-collective/google-maps-services"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.5.6|^7.4.3"
},
"autoload": {
"psr-4": {
"yidas\\googleMaps\\": "src/"
}
},
"require-dev": {
"php-collective/code-sniffer": "^0.2.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --extensions=php",
"cs-fix": "phpcbf --extensions=php",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.0.0 && mv composer.backup composer.json",
"stan-tests": "phpstan analyse -c tests/phpstan.neon",
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml"
}
}