-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 4.46 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
{
"name": "figuren-theater/ft-site-editing",
"description": "Packages to improve or extend the editing experience within the WordPress Site Editor (called Gutenberg for a long time) for all sites of the figuren.theater multisite network.",
"license": "GPL-3.0-or-later",
"type": "wordpress-muplugin",
"keywords": [
"wordpress",
"wordpress-muplugin",
"site-editor",
"blocks",
"block-pattern",
"gutenberg"
],
"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-site-editing/issues",
"source": "https://github.com/figuren-theater/ft-site-editing"
},
"require": {
"php": ">=7.2",
"carstingaxion/cbstdsys-post-subtitle": "0.1.1",
"figuren-theater/ft-network-block-editor": "*",
"figuren-theater/ft-network-block-patterns": "^1.1",
"figuren-theater/ft-options": "^1.1",
"wpackagist-plugin/abbreviation-button-for-the-block-editor": "^0.1",
"wpackagist-plugin/block-catalog": "^1.5",
"wpackagist-plugin/block-visibility": "^3",
"wpackagist-plugin/copyright-block": "^0.1",
"wpackagist-plugin/dinosaur-game": "^1.0",
"wpackagist-plugin/embed-block-for-github": "^0.3",
"wpackagist-plugin/icon-block": "^2.0",
"wpackagist-plugin/image-source-control-isc": "^2",
"wpackagist-plugin/newspaper-columns": "^1.0",
"wpackagist-plugin/social-sharing-block": "^1.0",
"wpackagist-plugin/superlist-block": "^0.1",
"wpackagist-plugin/todo-block": "^1.0"
},
"require-dev": {
"figuren-theater/code-quality": "*",
"wpackagist-plugin/gutenberg": "^19.4"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/carstingaxion/cbstdsys-post-subtitle"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"classmap": [
"inc/"
],
"files": [
"inc/abbreviation-button-for-the-block-editor/namespace.php",
"inc/block-catalog/namespace.php",
"inc/block-visibility/namespace.php",
"inc/cbstdsys-post-subtitle/namespace.php",
"inc/copyright-block/namespace.php",
"inc/dinosaur-game/namespace.php",
"inc/embed-block-for-github/namespace.php",
"inc/ft-network-block-editor/namespace.php",
"inc/ft-network-block-patterns/namespace.php",
"inc/icon-block/namespace.php",
"inc/image-source-control-isc/namespace.php",
"inc/newspaper-columns/namespace.php",
"inc/social-sharing-block/namespace.php",
"inc/superlist-block/namespace.php",
"inc/todo-block/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": [
"figuren-theater/ft-network-block-editor",
"figuren-theater/ft-network-block-patterns",
"carstingaxion/cbstdsys-post-subtitle",
"wpackagist-plugin/abbreviation-button-for-the-block-editor",
"wpackagist-plugin/block-catalog",
"wpackagist-plugin/block-visibility",
"wpackagist-plugin/copyright-block",
"wpackagist-plugin/dinosaur-game",
"wpackagist-plugin/embed-block-for-github",
"wpackagist-plugin/icon-block",
"wpackagist-plugin/image-source-control-isc",
"wpackagist-plugin/newspaper-columns",
"wpackagist-plugin/social-sharing-block",
"wpackagist-plugin/superlist-block",
"wpackagist-plugin/todo-block"
]
}
}
}