-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 1.16 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
{
"name": "pfefferle/wordpress-indieweb-press-this",
"description": "This plugin adds IndieWeb microformats2 markup to WordPress' press this. After activating, go to the Tools tab to install the bookmarklets.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"homepage": "http://notiz.blog/"
},
{
"name": "Ryan Barrett",
"homepage": "https://snarfed.org"
}
],
"extra": {
"installer-name": "indieweb-press-this"
},
"require": {
"php": ">=5.2.0",
"composer/installers": "~1.0",
"wimg/php-compatibility": "^8.0",
"wp-coding-standards/wpcs": "^0.14.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"phpunit/phpunit": "^6.5"
},
"require-dev": {
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"test": [
"composer install",
"bin/install-wp-tests.sh wordpress wordpress wordpress",
"vendor/bin/phpunit"
]
}
}