forked from KroneMultimedia/plugin-hacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 951 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
{
"name": "wordpress/plugin-hacks",
"type": "wordpress-muplugin",
"support": {
"src": "http://gitlab.krone.at/WordPress/plugin-hacks"
},
"extra": {
"installer-name": "kmm-hacks"
},
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src test --level 7 -c phpstan.neon",
"cs-check": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --verbose --diff"
},
"config": {
"gitlab-domains": ["gitlab.krone.at"],
"github-protocols": ["https"],
"secure-http": false
},
"require-dev": {
"php-mock/php-mock": "^2.0",
"friendsofphp/php-cs-fixer": "^2.11",
"phpstan/phpstan": "^0.9.2",
"phpstan/phpstan-phpunit": "^0.9.4",
"phpunit/phpunit": "7.*",
"scrutinizer/ocular": "^1.5"
}
}