forked from symbiote/silverstripe-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.25 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": "symbiote/silverstripe-notifications",
"description": "Send CMS editable system notifications from code",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"notifications"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Shea Dawson",
"email": "[email protected]"
},
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
},
{
"name": "Nik Spijkerman",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"silverstripe/cms": "^4.0",
"silverstripe/framework": "^4.0",
"symbiote/silverstripe-multivaluefield": "^5.0"
},
"autoload": {
"psr-4": {
"Symbiote\\Notifications\\": "src/",
"Symbiote\\Notifications\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"installer-name": "notifications",
"expose": [
"images"
],
"branch-alias": {
"dev-master": "4.2.x-dev"
}
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "Use the SendNotificationJob to queue and send notifications."
},
"replace": {
"silverstripe-australia/notifications": "self.version"
},
"require-dev": {
"phpunit/phpunit": "^5"
}
}