forked from ohdonpiano/ZendService_Apple_Apns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·50 lines (50 loc) · 1.23 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
{
"name": "zendframework/zendservice-apple-apns",
"description": "OOP Zend Framework wrapper for Apple Push Notification Service",
"license": "BSD-3-Clause",
"keywords": [
"zf",
"zendframework",
"apns",
"push",
"notification",
"apple"
],
"support": {
"issues": "https://github.com/zendframework/ZendService_Apple_Apns/issues",
"source": "https://github.com/zendframework/ZendService_Apple_Apns",
"rss": "https://github.com/zendframework/ZendService_Apple_Apns/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"ext-curl": "*",
"ext-mbstring": "*",
"laminas/laminas-json": "^3.5"
},
"require-dev": {
"laminas/laminas-coding-standard": "1.*",
"phpunit/phpunit": "8.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"ZendService\\Apple\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendServiceTest\\Apple\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev",
"dev-develop": "1.5.x-dev"
}
}
}