-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
45 lines (45 loc) · 1.21 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
{
"name": "mikemadison13/blt-lando",
"type": "library",
"description": "Lando integration for Acquia BLT.",
"license": "GPL-2.0+",
"authors":[
{
"name": "Mike Madison",
"homepage": "https://mikemadison.net",
"role": "Maintainer"
}
],
"require-dev": {
"acquia/blt": "^13",
"php-coveralls/php-coveralls": "^2",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {},
"scripts": {
"cs": "phpcs -n --standard=PSR2 src tests --exclude=Generic.Files.LineLength",
"cbf": "phpcbf -n --standard=PSR2 src tests --exclude=Generic.Files.LineLength",
"unit": "phpunit",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"test": [
"@lint",
"@unit",
"@cs"
]
},
"autoload": {
"psr-4": {
"Acquia\\BltLando\\": "./src/",
"MikeMadison13\\BltLando\\Tests\\": "./tests/src/"
}
},
"config": {
"allow-plugins": {
"acquia/blt": true
}
}
}