forked from 10up/simple-google-news-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.25 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
{
"name": "10up/simple-google-news-sitemap",
"description": "A simple Google News sitemap is generated on-the-fly for articles that were published in the last two days. Output is saved in cache or as a transient for fast reading and displaying on the front end.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "10up",
"email": "opensource@10up.com",
"homepage": "https://10up.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"10up/phpcs-composer": "dev-master",
"phpunit/phpunit": ">=7.0 <9.0",
"yoast/phpunit-polyfills": "^1.0",
"antecedent/patchwork": "^2.1",
"10up/wp_mock": "^0.4.2"
},
"autoload": {
"psr-4": {
"SimpleGoogleNewsSitemap\\": "includes/classes/"
}
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"test": "phpunit",
"setup-tests:local": "bash bin/install-wp-tests.sh tgns_wp_test root password mysql latest true",
"setup-tests:ci": "bash bin/install-wp-tests.sh tgns_wp_test root root localhost latest true"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}