-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
58 lines (58 loc) · 1.27 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
{
"name": "wpmetabox/mb-custom-post-type",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"ui",
"select2",
"wp-admin",
"meta-box",
"wordpress-plugin",
"custom-field",
"custom-post-type"
],
"description": "Create and manage custom post types and custom taxonomies with an easy-to-use interface in WordPress.",
"homepage": "https://metabox.io/plugins/custom-post-type/",
"license": "GPL-2.0",
"minimum-stability": "stable",
"repositories": [
{
"type": "git",
"url": "https://github.com/wpmetabox/support.git"
}
],
"config": {
"prepend-autoloader": false,
"sort-packages": true
},
"require": {
"meta-box/support": "dev-master"
},
"authors": [
{
"name": "Tran Ngoc Tuan Anh",
"email": "[email protected]",
"homepage": "https://metabox.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"MBCPT\\" : "src/"
}
},
"scripts": {
"format": [
"phpcbf src/",
"phpcbf src/ --standard=Generic --sniffs=Generic.Arrays.DisallowLongArraySyntax"
],
"post-update-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
],
"post-install-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
]
}
}