-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
101 lines (101 loc) · 2.61 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
{
"name": "figuren-theater/ft-performance",
"description": "Fast websites are more accessible, more sustainable and are giving a better UX. This is the code which accelerates figuren.theater and its WordPress Multisite Network.",
"license": "GPL-3.0-or-later",
"type": "wordpress-muplugin",
"keywords": [
"wordpress",
"performance",
"caching",
"object-cache",
"pre-loading",
"pre-fetching",
"gettext"
],
"authors": [
{
"name": "figuren.theater",
"email": "info@figuren.theater"
},
{
"name": "Carsten Bach",
"email": "mail@carsten-bach.de",
"homepage": "https://carsten-bach.de",
"role": "Developer"
}
],
"homepage": "https://websites.fuer.figuren.theater",
"support": {
"email": "info@figuren.theater",
"issues": "https://github.com/figuren-theater/ft-performance/issues",
"source": "https://github.com/figuren-theater/ft-performance"
},
"require": {
"php": ">=7.2",
"carstingaxion/cache-control": "2.2.5.2",
"carstingaxion/wp-super-preload": "1.2.2",
"figuren-theater/ft-options": "*",
"figuren-theater/ft-theming": "*",
"wpackagist-plugin/cache-enabler": "^1.8",
"wpackagist-plugin/fast404": "^1.2",
"wpackagist-plugin/performant-translations": "^1.1",
"wpackagist-plugin/pwa": "^0.8.0",
"wpackagist-plugin/quicklink": "^0.10.1",
"wpackagist-plugin/sqlite-object-cache": "1.3.8"
},
"require-dev": {
"figuren-theater/code-quality": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/carstingaxion/wordpress-cache-control"
},
{
"type": "git",
"url": "https://github.com/carstingaxion/WP-Super-Preload"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"classmap": [
"inc/"
],
"files": [
"inc/cache-control/namespace.php",
"inc/cache-enabler/namespace.php",
"inc/fast404/namespace.php",
"inc/performant-translations/namespace.php",
"inc/pwa/namespace.php",
"inc/quicklink/namespace.php",
"inc/sqlite-object-cache/namespace.php",
"inc/wp-super-preload/namespace.php",
"inc/namespace.php"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"johnpbloch/wordpress-core-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"altis": {
"install-overrides": [
"carstingaxion/cache-control",
"carstingaxion/wp-super-preload",
"wpackagist-plugin/cache-enabler",
"wpackagist-plugin/fast404",
"wpackagist-plugin/performant-translations",
"wpackagist-plugin/pwa",
"wpackagist-plugin/quicklink"
]
}
}
}