-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
30 lines (30 loc) · 1.12 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
{
"name": "adamsilverstein/wp-post-meta-revisions",
"description": "A WordPress plugin which implements a post meta revisioning feature as arrived at in https://core.trac.wordpress.org/ticket/20564.",
"homepage" : "https://wordpress.org/plugins/wp-post-meta-revisions/",
"keywords" : ["wordpress", "plugin" ],
"type" : "wordpress-plugin",
"license" : "GPL-2.0-or-later",
"authors": [
{
"name": "Adam Silverstein",
"email": "[email protected]"
}
],
"support": {
"forum" : "https://wordpress.org/support/plugin/wp-post-meta-revisions",
"issues": "https://github.com/adamsilverstein/wp-post-meta-revisions/issues",
"source": "https://github.com/adamsilverstein/wp-post-meta-revisions"
},
"require": {
"php" : ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^4 | ^5 | ^6 | ^7",
"wp-coding-standards/wpcs": "^2.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0"
},
"minimum-stability" : "RC",
"prefer-stable": true
}