-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1023 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 1023 Bytes
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
{
"name": "nullform/app-store-server-api-client",
"description": "PHP client for App Store Server API and App Store Server Notifications",
"type": "library",
"keywords": ["apple", "app store", "app store server api", "app store server notifications", "itunes"],
"homepage": "https://github.com/nullform/app-store-server-api-client",
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/uid": "^5.4||^7.0",
"guzzlehttp/guzzle": "^7.5",
"firebase/php-jwt": "^7.0",
"nullform/http-status": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Nullform\\AppStoreServerApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nullform\\AppStoreServerApiClient\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Pavel Novikov"
}
],
"scripts": {
"test": "phpunit"
}
}