forked from laravel-notification-channels/apn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.34 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
{
"name": "laravel-notification-channels/apn",
"description": "Apple APN Push Notification Channel",
"homepage": "https://github.com/laravel-notification-channels/apn",
"license": "MIT",
"authors": [
{
"name": "Fruitcake",
"email": "[email protected]",
"homepage": "https://fruitcake.nl"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/config": "^5.5",
"illuminate/events": "^5.5",
"illuminate/notifications": "^5.5",
"illuminate/support": "^5.5",
"illuminate/queue": "^5.5",
"zendframework/zendservice-apple-apns": "^1.2"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "~3.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\Apn\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\Apn\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
},
"laravel": {
"providers": [
"NotificationChannels\\Apn\\ApnServiceProvider"
]
}
}
}