-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·54 lines (54 loc) · 1.31 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
{
"name": "nzta/member-bookmarks",
"description": "Manage global bookmarks and allow members to add personal bookmarks to pages on the site",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/NZTA/member-bookmarks",
"keywords": [
"silverstripe",
"bookmark",
"favourites",
"cms"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/NZTA/member-bookmarks/issues"
},
"require": {
"silverstripe/cms": "^4 | ^5",
"sheadawson/silverstripe-linkable": "^2",
"undefinedoffset/sortablegridfield": "^2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"NZTA\\MemberBookmark\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NZTA\\MemberBookmark\\Tests\\": "tests/"
}
},
"extra": {
"expose": [
"icon"
]
},
"scripts": {
"lint": "phpcs -s src/ tests/",
"lint-fix": "phpcbf -s src/ tests/",
"test": "phpunit -d memory_limit=512M",
"test-flush": "phpunit -d memory_limit=512M -d flush=1"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}