-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
43
44
45
46
47
{
"name": "stadiamaps/api",
"description": "The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.",
"keywords": [
"stadiamaps",
"geocoding",
"routing",
"geospatial",
"sdk",
"rest",
"api"
],
"homepage": "https://stadiamaps.com/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ian Wagner",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^3.5"
},
"scripts": {
"test": "phpunit"
},
"support": {
"email": "[email protected]",
"source": "https://github.com/stadiamaps/stadiamaps-api-php",
"docs": "https://docs.stadiamaps.com/"
},
"autoload": {
"psr-4": { "OpenAPI\\Client\\" : "lib/" }
},
"autoload-dev": {
"psr-4": { "OpenAPI\\Client\\Test\\" : "test/" }
}
}