-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.21 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
{
"name": "altis/cms",
"description": "CMS Module for Altis",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Human Made",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"stuttter/wp-user-signups": "^5.0.2",
"roots/wp-password-bcrypt": "1.2.0",
"johnpbloch/wordpress": "6.7.1",
"altis/cms-installer": "^0.4.4",
"humanmade/clean-html": "^2.0.0",
"humanmade/altis-reusable-blocks": "~0.2.4",
"humanmade/asset-loader": "^0.6.4",
"10up/simple-local-avatars": "~2.7.11"
},
"autoload": {
"files": [
"inc/namespace.php",
"inc/remove_updates/namespace.php",
"inc/branding/namespace.php",
"inc/block_editor/namespace.php",
"inc/permalinks/namespace.php",
"inc/add_site_ui/namespace.php",
"inc/cli/namespace.php",
"inc/network_ui/namespace.php",
"inc/real_guids/namespace.php",
"inc/signup_notification/namespace.php"
],
"classmap": [
"inc/"
]
},
"extra": {
"altis": {
"install-overrides": [
"10up/simple-local-avatars",
"stuttter/wp-user-signups",
"humanmade/altis-reusable-blocks",
"humanmade/asset-loader"
]
}
}
}