-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.08 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": "powderblue/geocoding-api",
"description": "A basic PHP client for working with Google's Geocoding API",
"type": "project",
"license": "ISC",
"authors": [
{
"name": "Daniel Bettles",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.1.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6.19",
"squizlabs/php_codesniffer": "^3.9.1",
"danbettles/codesniffer-standard": "^2.0.0",
"phpstan/phpstan": "^1.10.67"
},
"autoload": {
"psr-4": {"PowderBlue\\GeocodingApi\\": "src/"}
},
"autoload-dev": {
"psr-4": {"PowderBlue\\GeocodingApi\\Tests\\": "tests/src/"}
},
"scripts": {
"app:test": "phpunit --bootstrap=vendor/autoload.php --colors=always tests",
"app:analyse-php": "phpstan analyse -c phpstan.neon --ansi",
"app:lint": "phpcs --standard=phpcs.xml",
"app:check-quality": [
"@app:test",
"@app:analyse-php",
"@app:lint"
]
}
}