-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
56 lines (49 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
{
"name": "apple/apn-push",
"description": "Push notifications to Apple devices",
"keywords": ["apple", "push", "apn", "notifications"],
"homepage": "https://github.com/ZhukV/AppleApnPush",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitaliy Zhuk",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 | ^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0 | ^9.0",
"web-token/jwt-key-mgmt": "~2.0",
"web-token/jwt-signature": "~2.0",
"web-token/jwt-signature-algorithm-ecdsa": "~2.0",
"phpmetrics/phpmetrics": "^2.0",
"escapestudios/symfony2-coding-standard": "~3.0",
"psr/simple-cache": "~1.0"
},
"suggest": {
"web-token/jwt-key-mgmt": "Allow using JSON Web Token for authenticating in Provider.",
"web-token/jwt-signature": "Allow using JSON Web Token for authenticating in Provider.",
"web-token/jwt-signature-algorithm-ecdsa": "Allow using JSON Web Token for authenticating in Provider.",
"spomky-labs/jose": "Allow using JSON Web Token for authenticating in Provider (do not work with PHP 7.2)."
},
"autoload": {
"psr-4": { "Apple\\ApnPush\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\Apple\\ApnPush\\": "tests/"}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"thanks": {
"name": "apple/apn-push",
"url": "https://github.com/ZhukV/AppleApnPush"
}
}
}