-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "wordpress/plugin-kron",
"type": "wordpress-plugin",
"support": {
"src": "http://gitlab.krone.at/WordPress/plugin-kron"
},
"extra": {
"installer-name": "kmm-kron"
},
"repositories": [{
"type": "gitlab",
"url": "http://gitlab.krone.at/KRN/phpunitwp.git"
}
],
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"league/climate": "^3.5"
},
"suggest": {
"enqueue/amqp-bunny": "For support of RabbitMQ"
},
"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": {
"php-mock/php-mock": "^2.0",
"friendsofphp/php-cs-fixer": "^2.11",
"phpunit/phpunit": "dev-add-compatibility-with-php8-to-phpunit-7",
"scrutinizer/ocular": "^1.5"
}
}