forked from udx/wp-stateless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 2.44 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
{
"name": "wpcloud/wp-stateless",
"description": "WP-Stateless WordPress plugin",
"type": "wordpress-plugin",
"minimum-stability": "stable",
"homepage": "https://udx.io",
"authors": [
{
"name": "UDX",
"homepage": "https://udx.io"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repository.usabilitydynamics.com"
},
{
"type": "git",
"url": "https://github.com/wpCloud/wp-stateless.git"
}
],
"require": {
"php": ">=5.6.20",
"composer/installers": "~1.0",
"ccampbell/chromephp": "^4.1",
"firebase/php-jwt": "^6.1.2",
"wpmetabox/meta-box": "^5.6.3",
"udx/lib-ud-api-client": "^1.2",
"udx/lib-wp-bootstrap": "^1.3"
},
"autoload": {
"classmap": [
"lib/classes",
"lib/includes"
]
},
"archive": {
"exclude": [
"node_modules",
".gitignore",
"test",
"circle.yml",
"composer.lock",
"gruntfile.js",
"package.json"
]
},
"extra": {
"mozart": {
"dep_namespace": "wpCloud\\StatelessMedia\\",
"dep_directory": "/lib/ns-vendor/deps",
"classmap_directory": "/lib/ns-vendor/classes",
"classmap_prefix": "UDX_",
"packages": [
"deliciousbrains/wp-background-processing"
]
},
"featureFlags": [
{
"name": "Google Login",
"constant": "WP_STATELESS_GOOGLE_LOGIN",
"description": "Allows for quicker setup by letting admin login to their Google Account from the control panel. Fetches available projects and buckets.",
"since": "1.9.2",
"enabled": true
},
{
"name": "Legacy Settings",
"constant": "WP_STATELESS_LEGACY_SETTINGS",
"description": "Shows legacy settings options.",
"since": "1.9.2",
"enabled": false
}
],
"schemas": {
"dependencies": {
"modules": {},
"plugins": []
},
"licenses": {
"client": {
"slug": "wpcloud/wp-stateless",
"screen": {
"parent": "upload.php?page=stateless-settings",
"hide_menu": true
}
},
"product": false
}
},
"installer-paths": {
"vendor/wpmetabox/meta-box": ["wpmetabox/meta-box"]
}
},
"require-dev": {
"coenjacobs/mozart": "0.7.1",
"deliciousbrains/wp-background-processing": "^1.0"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}