forked from udx/wp-stateless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 2.34 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
{
"name": "wpcloud/wp-stateless",
"description": "WP-Stateless WordPress plugin",
"type": "wordpress-plugin",
"minimum-stability": "stable",
"homepage": "https://usabilitydynamics.com",
"authors": [
{
"name": "UsabilityDynamics, Inc.",
"homepage": "https://usabilitydynamics.com"
}
],
"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",
"udx/lib-settings": "~0.3",
"udx/lib-wp-bootstrap": "~1.3",
"udx/lib-ud-api-client": "~1.2",
"ccampbell/chromephp": "^4.1",
"firebase/php-jwt": "^5.2",
"wpmetabox/meta-box": "5.2.3"
},
"autoload": {
"classmap": [
"lib/classes"
]
},
"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
}
}
},
"require-dev": {
"coenjacobs/mozart": "0.6.0-beta-3",
"deliciousbrains/wp-background-processing": "^1.0"
}
}