-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
56 lines (56 loc) · 1.47 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": "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": "^8.1",
"edamov/pushok": "^0.16",
"illuminate/cache": "^9.0|^10.0|^11.0",
"illuminate/config": "^9.0|^10.0|^11.0",
"illuminate/events": "^9.0|^10.0|^11.0",
"illuminate/notifications": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.66|^3.0"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10.0",
"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"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}