-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
46 lines (46 loc) · 1.37 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": "pfefferle/wordpress-webmention",
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
"require": {
"php": ">=7.0",
"composer/installers": "^1.0 || ^2.0"
},
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"homepage": "https://notiz.blog"
}
],
"extra": {
"installer-name": "webmention"
},
"require-dev": {
"mf2/mf2": "^0.5.0",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs -n -q",
"phpunit": "./vendor/bin/phpunit",
"setup-local-tests": "bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 latest",
"setup-cp-tests": "bash bin/install-cp-tests.sh cpc_test root root 127.0.0.1 latest",
"test": [
"composer install",
"bin/install-wp-tests.sh webmention-test root webmention-test test-db latest true",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}