-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.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
{
"name": "integer-net/deployer-timer",
"description": "Collect duration of deployer tasks",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Fabian Schmengler",
"email": "fs@integer-net.de"
}
],
"require": {
"php": "^7.1.0|^7.2.0|^7.3.0|^8.0.0|^8.1.0",
"roave/security-advisories": "dev-master",
"deployer/deployer": "^6.4"
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^7.5|^8.0",
"phpro/grumphp": "^0.15.0",
"squizlabs/php_codesniffer": "^3.4",
"maglnet/composer-require-checker": "^2.0",
"phan/phan": "^1.2",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.11.5",
"infection/infection": "^0.12.2",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload": {
"psr-4": {
"IntegerNet\\DeployerTimer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\DeployerTimer\\": "tests/"
},
"files": [
"recipe/timer.php"
]
},
"scripts": {
"test": "phpunit && infection && phpstan analyze --level 7 src tests && phan"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"phpro/grumphp": true
}
}
}