This repository was archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·54 lines (54 loc) · 1.44 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.44 KB
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
{
"name": "andreshg112/pusher-api-notifications",
"description": "Send Pusher API Notifications",
"keywords": [
"pusher-api-notifications",
"laravel",
"pusher",
"notifications"
],
"homepage": "https://github.com/andreshg112/pusher-api-notifications",
"license": "MIT",
"authors": [
{
"name": "Andrés Herrera García",
"email": "andreshg112@gmail.com",
"homepage": "https://github.com/andreshg112",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/notifications": "^5.3|^5.4|^5.5|^5.6|^5.7|^5.8|^6.0|^7.0",
"illuminate/support": "^5.1|^5.2|^5.3|^5.4|^5.5|^5.6|^5.7|^5.8|^6.0|^7.0",
"pusher/pusher-http-laravel": "^4.2"
},
"require-dev": {
"mockery/mockery": "^1.2",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Andreshg112\\PusherApiNotifications\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andreshg112\\PusherApiNotifications\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Andreshg112\\PusherApiNotifications\\PusherApiServiceProvider"
]
}
}
}