-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "pfefferle/wordpress-nodeinfo",
"description": "NodeInfo and NodeInfo2 for WordPress!",
"require": {
"php": ">=5.6.0",
"composer/installers": "^1.0 || ^2.0"
},
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"homepage": "https://notiz.blog"
}
],
"extra": {
"installer-name": "nodeinfo"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8",
"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"
},
"config": {
"allow-plugins": true
},
"allow-plugins": {
"composer/installers": true
},
"scripts": {
"test": [
"composer install",
"bin/install-wp-tests.sh wordpress wordpress wordpress",
"vendor/bin/phpunit"
]
}
}