-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
59 lines (59 loc) · 1.48 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
57
58
59
{
"name": "silverorange/deliverance",
"description": "Mailing list framework.",
"type": "library",
"keywords": [ "mailchimp", "mailinglist", "email", "newsletter" ],
"homepage": "https://github.com/silverorange/deliverance",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "[email protected]"
},
{
"name": "Isaac Grant",
"email": "[email protected]"
},
{
"name": "Michael Gauthier",
"email": "[email protected]"
},
{
"name": "Nick Burka",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com",
"only": ["silverorange/*"]
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"silverorange/site": "^13.0.0 || ^14.0.0 || ^15.0.0",
"silverorange/swat": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"silverorange/coding-standard": "^1.0.0"
},
"suggest": {
"drewm/mailchimp-api": "Support for MailChimp mailing lists.",
"silverorange/admin": "Admin pages for managing newsletters."
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"phpstan": "./vendor/bin/phpstan",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"autoload": {
"classmap": [ "Deliverance/" ]
},
"config": {
"sort-packages": true
}
}