-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
54 lines (54 loc) · 1.41 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
{
"name": "10up/simple-page-ordering",
"description": "Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"10up"
],
"homepage": "https://github.com/10up/simple-page-ordering",
"license": "GPLv2",
"authors": [
{
"name": "10up",
"homepage": "https://10up.com/"
}
],
"support": {
"issues": "https://github.com/10up/simple-page-ordering/issues",
"source": "https://github.com/10up/simple-page-ordering"
},
"minimum-stability": "dev",
"require": {
"10up/wp-compat-validation-tool": "dev-trunk"
},
"require-dev": {
"10up/phpcs-composer": "dev-master"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"platform-check": false
},
"repositories": [
{
"type": "git",
"url": "https://github.com/10up/wp-compat-validation-tool.git"
}
],
"scripts": {
"post-install-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh Simple_Page_Ordering_Validator"
],
"post-update-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh Simple_Page_Ordering_Validator"
]
},
"extra": {
"installer-paths": {
"./{$name}/": ["10up/wp-compat-validation-tool"]
}
}
}