-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
68 lines (68 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jackjamieson2/yarns-microsub-server",
"description": "A Microsub server plugin for WordPress",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Jack Jamieson",
"homepage": "http://jackjamieson.net"
}
],
"extra": {
"installer-name": "yarns-microsub-server",
"installer-paths": {
"vendor/{$name}": ["dshanske/parse-this"]
},
"copy-file-dev" : {
"vendor/parse-this/parse-this.php": "lib/parse-this/",
"vendor/parse-this/readme.txt": "lib/parse-this/",
"vendor/parse-this/readme.md": "lib/parse-this/",
"vendor/parse-this/includes/": "lib/parse-this/includes/",
"vendor/parse-this/lib/": "lib/parse-this/lib/"
}
},
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0 || ~2.0"
},
"require-dev": {
"dshanske/parse-this": "dev-trunk",
"slowprog/composer-copy-file": "~0.3",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "^2.3.0",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"php-parallel-lint/php-parallel-lint": "^1.2",
"wp-cli/i18n-command": "^2.2",
"sebastian/phpcpd": "^3.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.5",
"yoast/phpunit-polyfills": "^1.0",
"wpreadme2markdown/wp2md": "*"
},
"autoload-dev": {
"psr-4": { "SlowProg\\CopyFile\\": "" }
},
"scripts": {
"lint:phpcpd": "./vendor/bin/phpcpd --fuzzy --exclude .git --exclude vendor --exclude lib .",
"lint:wpcs": "./vendor/bin/phpcs -s --runtime-set ignore_warnings_on_exit 1",
"lint:wpcs-fix": "./vendor/bin/phpcbf",
"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",
"make-pot": "./vendor/bin/wp i18n make-pot . languages/yarns-microsub-server.pot",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor --exclude lib .",
"copy-files": "SlowProg\\CopyFile\\ScriptHandler::copy",
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
],
"post-update-cmd": [
],
"update-readme": [
"wp2md -i readme.txt | tail -n +11 > readme.md"
]
}
}