-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
35 lines (33 loc) · 1021 Bytes
/
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
{
"name": "tribalsystems/zenario",
"type": "project",
"description": "Zenario is a web-based content management system for sites with one or many languages.",
"keywords": ["cms", "content management", "wysiwyg", "zenario"],
"homepage": "https://github.com/TribalSystems/Zenario",
"license": "MIT",
"require": {
"php": ">=8.1",
"bjeavons/zxcvbn-php": "^1.0",
"ezyang/htmlpurifier": "^4.16",
"matthiasmullie/minify": "^1.3",
"mustangostang/spyc": "*",
"phpmailer/phpmailer": "~6.0",
"phpoffice/phpspreadsheet": "*",
"powder96/numbers.php": "@dev",
"ps/image-optimizer": "*",
"smottt/wideimage": "*",
"twig/twig": "^2.0"
},
"autoload": {
"psr-4": { "ze\\": "zenario/autoload" }
},
"config": {
"vendor-dir": "zenario/libs/composer_dist",
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.1"
}
},
"to-update": "mv composer_dist.json composer.json; composer update; mv composer.json composer_dist.json; rm composer.lock"
}