-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
48 lines (48 loc) · 1003 Bytes
/
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
{
"name": "asgardcms/notification-module",
"description": "Module handling the real time notifications",
"type": "asgard-module",
"keywords": [
"asgardcms",
"notifications",
"pusher"
],
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"idavoll/core-module": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.3",
"orchestra/testbench": "3.5.*",
"friendsofphp/php-cs-fixer": "^2.7"
},
"autoload": {
"psr-4": {
"Modules\\Notification\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Modules\\Notification\\": ".",
"Modules\\": "Modules/"
}
},
"extra": {
"branch-alias": {
"dev-2.0": "2.0.x-dev"
}
},
"suggest": {
"pusher/pusher-php-server": "Allows notifications to enable real-time notifications."
},
"minimum-stability": "dev",
"prefer-stable": true
}