-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·55 lines (55 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
{
"name": "nzta/promo-overlay",
"description": "A module for creating promotion pages",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/NZTA/promo-overlay",
"keywords": [
"silverstripe",
"promotion",
"campaign",
"cms"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/NZTA/promo-overlay/issues"
},
"require": {
"silverstripe/cms": "^4 | ^5"
},
"require-dev": {
"phpunit/phpunit": "^9",
"slevomat/coding-standard": "^8",
"squizlabs/php_codesniffer": "^3"
},
"extra": {
"expose": [
"css",
"javascript"
]
},
"autoload": {
"psr-4": {
"NZTA\\PromoOverlay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NZTA\\PromoOverlay\\Test\\": "tests/"
}
},
"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"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}