-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.57 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
{
"name": "jeherve/posts-on-this-day",
"description": "Widget to display a list of posts published on this day in years past.",
"homepage": "https://jeremy.hu/my-plugins/posts-on-this-day/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/jeherve/posts-on-this-day/issues"
},
"require": {
"automattic/jetpack-autoloader": "5.0.0"
},
"require-dev": {
"automattic/wordbless": "dev-master",
"automattic/jetpack-codesniffer": "4.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"php-parallel-lint/php-parallel-lint": "1.4.0"
},
"scripts": {
"php:lint": [
"vendor/bin/parallel-lint --exclude vendor ."
],
"phpcs:compatibility": [
"@phpcs:lint --standard=./.phpcs.xml.dist,PHPCompatibilityWP"
],
"phpcs:fix": [
"Composer\\Config::disableProcessTimeout",
"phpcbf -p"
],
"phpcs:lint": [
"Composer\\Config::disableProcessTimeout",
"phpcs -p -s"
],
"phpcs:lint:errors": [
"@phpcs:lint --runtime-set ignore_warnings_on_exit 1"
],
"phpunit": [
"@composer update",
"./vendor/phpunit/phpunit/phpunit --colors=always"
],
"test-php": [
"@composer phpunit"
],
"post-update-cmd": "php -r \"copy('vendor/automattic/wordbless/src/dbless-wpdb.php', 'wordpress/wp-content/db.php');\""
},
"autoload": {
"classmap": [
"src"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}