-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.24 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
{
"name": "i-lateral/silverstripe-notifier",
"description": "Configurable notifications system for sending notifications based on data object activity",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/i-lateral/silverstripe-notifier",
"keywords": [
"silverstripe",
"notifications",
"email"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/i-lateral/silverstripe-notifier/issues"
},
"require": {
"silverstripe/framework": "^4.4",
"silverstripe/siteconfig": "^4.4",
"symbiote/silverstripe-gridfieldextensions": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\Notifier\\": "src/",
"ilateral\\SilverStripe\\Notifier\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}