-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "tarikweiss/apple-maps-server-api-client",
"description": "A PHP-based reference-implementation for the Apple Maps Server API. Uses tweaks to enhance usage with PHP.",
"type": "library",
"keywords": [
"apple",
"apple maps",
"api client"
],
"homepage": "https://github.com/tarikweiss/https-github.com-tarikweiss-apple-maps-server-api-client",
"license": "MIT",
"authors": [
{
"email": "kontakt@tarikweiss.de",
"name": "Tarik Weiss"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"\\AppleMapsServerApiClient\\": "src/",
"\\AppleMapsServerApiClient\\Tests\\": "tests/phpunit/"
}
},
"require": {
"php": "^8.1",
"ext-openssl": "*",
"firebase/php-jwt": "^6",
"json-mapper/json-mapper": "^2",
"psr/http-client": "*",
"psr/http-factory": "*",
"php-http/discovery": "^1.17"
},
"require-dev": {
"guzzlehttp/guzzle": "7.*",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "*"
}
}