-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 1.64 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
{
"name": "meta-box/meta-box-builder",
"description": "Meta Box Builder extension for Meta Box",
"type": "wordpress-plugin",
"config": {
"prepend-autoloader": false
},
"repositories": [
{
"type": "git",
"url": "https://github.com/elightup/twig.git"
},
{
"type": "git",
"url": "https://github.com/wpmetabox/support.git"
},
{
"type": "git",
"url": "[email protected]:wpmetabox/mbb-parser.git"
}
],
"autoload": {
"psr-4": {
"MBB\\": "src/",
"MBB\\SettingsPage\\": "modules/settings-page/src/",
"MBB\\Relationships\\": "modules/relationships/src/"
}
},
"require": {
"meta-box/support": "dev-master",
"meta-box/mbb-parser": "dev-master",
"elightup/twig": "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"
],
"phpcs": [
"phpcs > phpcs.txt"
]
},
"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/"
],
"riimu/kit-phpencoder": [
"examples/",
"*.json"
],
"elightup/twig": [
"*.json",
"twig.php"
]
}
}
}