-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 975 Bytes
/
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
{
"name": "calderawp/caldera-containers",
"type": "libary",
"license": "GPL-2.0",
"authors": [
{
"name": "josh",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.6|^7.0",
"pimple/pimple": "^3.2",
"psr/container": "^1.0@dev"
},
"autoload": {
"psr-4": {
"calderawp\\CalderaContainers\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "5.0.*",
"squizlabs/php_codesniffer": "^3.2",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload-dev": {
"psr-4": {
"calderawp\\CalderaContainers\\Tests\\": "Tests"
}
},
"scripts": {
"tests": "composer lints && composer fixes && composer test",
"test": "phpunit Tests",
"tests-now": "phpunit Tests --group=now",
"sniffs": "phpcs src/",
"fixes": "phpcbf src/",
"lints": "parallel-lint ./src --blame --exclude vendor && parallel-lint ./Tests --blame --exclude vendor"
}
}