This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (83 loc) · 2.41 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
{
"name": "zikula/distribution",
"version": "3.1.0",
"description": "A basic distribution of Zikula with no third party modules",
"type": "project",
"homepage": "https://ziku.la/",
"license": "LGPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Zikula Team",
"homepage": "https://github.com/zikula/core/graphs/contributors"
}
],
"autoload": {
"files": ["src/Kernel.php"]
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-xml": "*",
"symfony/flex": "^2",
"components/bootstrap": "^4",
"components/font-awesome": "^6",
"components/jquery": "^3",
"components/jqueryui": "^1",
"zikula/core-bundle": "3.1.0",
"zikula/sortable-columns": "dev-main",
"zikula/legal-module": "^3",
"zikula/oauth-module": "^1",
"zikula/pagelock-module": "^1",
"zikula/profile-module": "^3",
"zikula/staticcontent-module": "^1",
"oomphinc/composer-installers-extender": "^2"
},
"conflict": {
"symfony/symfony": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/FrDH/mmenu-js"
}
],
"scripts": {
"post-install-cmd": [
"@auto-scripts",
"@zikula-scripts"
],
"post-update-cmd": [
"@auto-scripts",
"@zikula-scripts"
],
"auto-scripts": {
"cache:clear --env prod": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"requirements-checker": "script"
},
"zikula-scripts": [
"composer dump-autoload",
"Zikula\\ExtensionsModule\\Composer\\ManuallyInstallAssets::install"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"symfony/runtime": true,
"oomphinc/composer-installers-extender": true,
"symfony/flex": true
}
},
"extra": {
"symfony-assets-install": "relative",
"installer-types": ["component"],
"installer-paths": {
"public/{$name}/": ["type:component"],
"src/extensions/{$vendor}/{$name}": ["type:zikula-module", "type:zikula-theme"]
}
}
}