-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.13 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.13 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
44
{
"name": "silverstripeltd/bespoke-standards",
"description": "The Silverstripe ltd bespoke project backend standards",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nate Devereux",
"email": "nate.devereux@silverstripe.com"
},
{
"name": "Mo Alsharaf",
"email": "mohamed.alsharaf@silverstripe.com"
}
],
"bin": [
"bespoke-phpcbf",
"bespoke-phpcs",
"bespoke-phpcs-report-source",
"bespoke-phpcs-report-summary",
"bespoke-phplint"
],
"require": {
"php": "^8.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^1.0",
"slevomat/coding-standard": "~8.22.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Silverstripe\\": "src/"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit --no-coverage"
}
}