-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
38 lines (38 loc) · 971 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
{
"name": "friendsofsilverstripe/backendmessages",
"description": "DRY way to create message boxes in SilverStripe backend.",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/friendsofsilverstripe",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"cms",
"message",
"warning",
"notification"
],
"authors": [
{
"name": "Peter Thaleikis",
"homepage": "https://bringyourownideas.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"silverstripe/framework": "^4.0 | ^5"
},
"require-dev": {
"symfony/thanks": "^1.0"
},
"support": {
"issues": "https://github.com/FriendsOfSilverStripe/backendmessages/issues"
},
"autoload": {
"psr-4": {
"FriendsOfSilverStripe\\Backendmessages\\": "src/"
}
},
"scripts": {
"lint": "phpcs src/"
}
}