forked from laravel-notification-channels/channels
-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
46 lines (46 loc) · 1.2 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
{
"name": "alymosul/laravel-exponent-push-notifications",
"description": "Exponent push notifications driver for laravel",
"homepage": "https://github.com/alymosul/laravel-exponent-push-notifications",
"license": "MIT",
"authors": [
{
"name": "Aly Suleiman",
"email": "alymosul@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"alymosul/exponent-server-sdk-php": "1.3.*",
"laravel/framework": "^10.0"
},
"require-dev": {
"mockery/mockery": "^1.5.0",
"phpunit/phpunit": "^9.5.10",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\ExpoPushNotifications\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\ExpoPushNotifications\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\ExpoPushNotifications\\ExpoPushNotificationsServiceProvider"
]
}
}
}