This repository was archived by the owner on Apr 4, 2023. It is now read-only.
forked from acegiak/Semantic-Linkbacks
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.3 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
48
{
"name": "pfefferle/wordpress-semantic-linkbacks",
"description": "Semantic Linkbacks for WebMentions, Trackbacks and Pingbacks",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"email": "pfefferle@gmail.com"
}
],
"extra": {
"installer-name": "semantic-linkbacks"
},
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0",
"mf2/mf2": "^0.4.6",
"p3k/emoji-detector": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8.0",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"scripts": {
"test": [
"composer install",
"bin/install-wp-tests.sh webmention-test root webmention-test test-db latest true",
"vendor/bin/phpunit"
],
"test-local": [
"composer update",
"bin/install-wp-tests.sh wordpress wordpress wordpress 127.0.0.1 4.9.8 true",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}