-
Notifications
You must be signed in to change notification settings - Fork 422
/
composer.json
103 lines (94 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "wpmetabox/meta-box",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"meta-box",
"wordpress-plugin",
"custom-field",
"custom-fields"
],
"description": "A powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress websites.",
"homepage": "https://metabox.io",
"license": "GPL-2.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Tran Ngoc Tuan Anh",
"email": "[email protected]",
"homepage": "https://metabox.io",
"role": "Developer"
}
],
"config": {
"allow-plugins": true
},
"autoload": {
"psr-4": {
"MetaBox\\": "src/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/wpmetabox/support.git"
}
],
"require-dev": {
"phpunit/phpunit": "^11.3"
},
"require": {
"meta-box/support": "dev-master"
},
"scripts": {
"post-update-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
],
"post-install-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
],
"test": [
"./vendor/bin/phpunit"
]
},
"extra": {
"dev-files": {
"/": [
".git",
".github/",
".gitattributes",
".gitignore",
".distignore",
"*.yaml",
"*.yml",
"*.txt",
"*.less",
"*.scss",
"*.po",
"composer.json",
"composer.lock",
"package.json",
"package-lock.json",
"phpcs.xml",
"pnpm-lock.yaml",
"phpstan.neon",
"phpunit.xml",
".babelrc",
"webpack.config.js",
".editoconfig",
".vscode",
"esbuild.js",
"LICENSE",
"*.md",
"test/",
"tests/",
"demo.php",
"demo/",
"sass/",
"vendor/"
]
}
}
}