forked from laravel-notification-channels/apn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.39 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
57
{
"name": "exeerik/apn",
"description": "Apple APN Push Notification Channel",
"homepage": "https://github.com/ExeErik/apn",
"license": "MIT",
"authors": [
{
"name": "Fruitcake",
"email": "[email protected]",
"homepage": "https://fruitcake.nl"
},
{
"name": "Erik Exner",
"email": "[email protected]",
"homepage": "https://github.com/ExeErik"
}
],
"require": {
"php": "^7.2.5",
"exeerik/pushok": "^0.11.0",
"illuminate/config": "^7.0",
"illuminate/events": "^7.0",
"illuminate/notifications": "^7.0",
"illuminate/support": "^7.0"
},
"require-dev": {
"mockery/mockery": "~1.3.0",
"phpunit/phpunit": "~8.2",
"squizlabs/php_codesniffer": "~3.5"
},
"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"
]
}
}
}