-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·56 lines (56 loc) · 1.23 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": "nzta/vote",
"description": "A module for voting on a Page OR a Comment",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/NZTA/vote",
"keywords": [
"silverstripe",
"vote",
"like",
"cms"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/NZTA/vote/issues"
},
"require": {
"colymba/gridfield-bulk-editing-tools": "^3 | ^4",
"silverstripe/cms": "^4 | ^5",
"silverstripe/comments": "^3 | ^4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"slevomat/coding-standard": "^8",
"squizlabs/php_codesniffer": "^3"
},
"extra": {
"installer-name": "vote",
"expose": [
"js"
]
},
"autoload": {
"psr-4": {
"NZTA\\Vote\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NZTA\\Vote\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs -s src/ tests/",
"lint-fix": "phpcbf -s src/ tests/",
"test": "phpunit '' -d memory_limit=512M -d flush=1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}