forked from zendframework/ZendService_Apple_Apns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 1 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": "webmonkeyhu/apple-apns",
"description": "OOP Laminas wrapper for Apple Push Notification Service",
"license": "BSD-3-Clause",
"keywords": [
"webmonkey",
"laminas",
"apns",
"push",
"notification",
"apple"
],
"support": {
"issues": "https://github.com/webmonkey/Apple_Apns/issues",
"source": "https://github.com/webmonkey/Apple_Apns"
},
"require": {
"php": "^7.4",
"laminas/laminas-json": "^3.1.2"
},
"require-dev": {
"laminas/laminas-coding-standard": "^1.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Webmonkey\\Apple\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebmonkeyTest\\Apple\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.1.x-dev"
}
}
}