-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.11 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
{
"name": "wordpress/plugin-hacks",
"type": "wordpress-muplugin",
"support": {
"src": "http://gitlab.krone.at/WordPress/plugin-hacks.git"
},
"extra": {
"installer-name": "kmm-hacks"
},
"repositories": [
{
"type": "gitlab",
"url": "http://gitlab.krone.at/KRN/phpcs.git"
}
],
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"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,
"allow-plugins": {
"composer/installers": true
}
},
"require-dev": {
"krn/php-cs-style": "*",
"php-mock/php-mock": "^2.1",
"phpunit/phpunit": ">=8.5.23"
}
}