-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "silverstripeltd/betamask",
"description": "Betamask CMS admin theme",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silverstripeltd/betamask",
"keywords": [
"silverstripe",
"theme",
"cms"
],
"support": {
"issues": "https://github.com/silverstripeltd/betamask/issues"
},
"authors": [
{
"name": "Silverstripe LTD",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"silverstripe/admin": "^2.1",
"silverstripeltd/featureflag": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3",
"slevomat/coding-standard": "^8.1",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"repositories": [
{
"type": "git",
"url": "[email protected]:silverstripeltd/featureflag.git"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"silverstripe/vendor-plugin": true
}
},
"extra": {
"project-files-installed": [
"behat.yml",
"phpcs.xml.dist",
"phpunit.xml.dist"
],
"expose": [
"client/dist"
],
"sort-packages": true,
"resources-dir": "_resources"
},
"autoload": {
"psr-4": {
"SilverStripe\\Betamask\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"silverstripe-standards": [
"@php-lint",
"@phpcs"
],
"test-phpunit": "phpunit -d memory_limit=512M -d flush=1",
"php-lint": "parallel-lint src tests",
"phpcs": "phpcs src tests --standard=phpcs.xml --extensions=php --encoding=utf-8",
"phpcbf": "phpcbf src tests --standard=phpcs.xml --extensions=php --encoding=utf-8"
}
}