-
-
Notifications
You must be signed in to change notification settings - Fork 264
/
composer.json
140 lines (140 loc) · 4.1 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "pods-framework/pods",
"type": "wordpress-plugin",
"description": "Pods is a development framework for creating, extending, managing, and deploying customized content types in WordPress.",
"keywords": [
"wordpress",
"content",
"fields"
],
"homepage": "https://pods.io/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Scott Kingsley Clark",
"homepage": "https://www.scottkclark.com/",
"role": "Lead Developer"
},
{
"name": "Jory Hogeveen",
"homepage": "https://www.keraweb.nl/",
"role": "Contributing Developer and Community Support"
},
{
"name": "Zack Rothauser",
"homepage": "https://zackrothauser.com/",
"role": "React Contributor and Contributing Developer"
},
{
"name": "Jim True",
"homepage": "https://jimtrue.com/",
"role": "Community Support"
},
{
"name": "Matt Gibbs",
"homepage": "https://facetwp.com/",
"role": "Founding Developer"
}
],
"support": {
"issues": "https://github.com/pods-framework/pods/issues",
"forum": "https://wordpress.org/support/plugin/pods",
"source": "https://github.com/pods-framework/pods",
"docs": "https://docs.pods.io/"
},
"repositories": [
{
"name": "the-events-calendar/coding-standards",
"type": "github",
"url": "https://github.com/the-events-calendar/coding-standards",
"no-api": true
},
{
"name": "lucatume/di52",
"type": "github",
"url": "https://github.com/lucatume/di52",
"no-api": true
}
],
"require": {
"composer/installers": "2.2.*",
"erusev/parsedown": "^1.7.4",
"lucatume/di52": "^3.3.5",
"mustangostang/spyc": "^0.6.3",
"php": ">=7.2"
},
"require-dev": {
"automattic/vipwpcs": "^3.0.0",
"bvanhoekelen/performance": "^2.5.1",
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"fzaninotto/faker": "^1.8",
"lucatume/codeception-snapshot-assertions": "^0.4.0",
"lucatume/function-mocker": "^1.3.8",
"lucatume/function-mocker-le": "^1.0.1",
"lucatume/wp-browser": "3.2.3",
"lucatume/wp-snaphot-assertions": "^1.1",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^6.5",
"stellarwp/coding-standards": "dev-main",
"spatie/phpunit-snapshot-assertions": "^1.4.2",
"szepeviktor/phpstan-wordpress": "*",
"wp-cli/wp-cli": "2.*",
"wp-coding-standards/wpcs": "^3.1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"suggest": {
"wp-cli/wp-cli": "Enables access to Pods CLI commands."
},
"scripts": {
"strauss": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/latest/download/strauss.phar",
"@php bin/strauss.phar"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"extra": {
"installer-name": "pods",
"strauss": {
"target_directory": "vendor/vendor-prefixed",
"namespace_prefix": "Pods\\Prefixed",
"classmap_prefix": "Pods__Prefixed__",
"constant_prefix": "PODS_PREFIXED_",
"function_prefix": "pods_prefixed_",
"packages": [
"erusev/parsedown",
"lucatume/di52",
"mustangostang/spyc"
],
"exclude_from_prefix": {
"file_patterns": []
},
"delete_vendor_files": false
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"kylekatarnls/update-helper": true,
"phpstan/extension-installer": true
}
}
}