-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
44 lines (44 loc) · 1.38 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
{
"name": "stephenharris/event-organiser",
"description": "Event management plug-in for WordPress",
"keywords": ["events", "wordpress"],
"homepage": "http://wp-event-organiser.com",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Stephen Harris",
"email": "contact@stephenharris.info",
"homepage": "http://www.stephenharris.info"
}
],
"support": {
"forum": "http://wp-event-organiser.com/forums",
"issues": "https://github.com/stephenharris/Event-Organiser/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/stephenharris/WordPressBehatExtension.git"
}
],
"require-dev": {
"phpunit/phpunit": "8.*",
"phpmd/phpmd" : "@stable",
"squizlabs/php_codesniffer": "3.5.7",
"wp-coding-standards/wpcs" : "0.*",
"yoast/phpunit-polyfills": "^1.0"
},
"extra": {
"wordpress-install-dir": "vendor/wordpress"
},
"scripts" : {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../wp-coding-standards/wpcs",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths ../../wp-coding-standards/wpcs"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}