-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.24 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"name": "heyday/silverstripe-menumanager",
"type": "silverstripe-vendormodule",
"description": "Allows complex menu management to be handled through the CMS when a simple tree structure is not enough.",
"license": "MIT",
"require": {
"silverstripe/cms": "^6",
"symbiote/silverstripe-gridfieldextensions": "^5",
"silverstripe/asset-admin": "^3"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.7.2"
},
"autoload": {
"psr-4": {
"Heyday\\MenuManager\\": "src/",
"Heyday\\MenuManager\\Test\\": "tests/"
}
},
"extra": {
"dev-main": "5.0.x-dev",
"expose": [
"client/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
},
"scripts": {
"test": "phpunit -d memory_limit=512M -d flush=1",
"lint": "phpcs src tests",
"lint:fix": "phpcbf src tests",
"test-with-coverage": [
"phpunit --coverage-html coverage/php --coverage-clover coverage/php/clover.xml"
]
}
}