Files
gantry5/composer.json
T

26 lines
620 B
JSON
Raw Normal View History

2021-04-27 11:01:12 +03:00
{
"name": "gantry/gantry5-builder",
"description": "Gantry 5 Framework builder",
"type": "metapackage",
"license": "MIT",
"minimum-stability": "dev",
"require": {
2025-03-25 16:43:54 +01:00
"php": ">=8.1.0 <8.4.0",
"ext-zip": "*",
2025-02-25 17:14:25 +01:00
"ext-json": "*",
"ext-mbstring": "*"
2021-04-27 11:01:12 +03:00
},
"scripts": {
"install-deps": "bin/composer-install",
"update-deps": "bin/composer-update",
"build-dev": [
"bin/composer-install",
"bin/build dev"
],
"build-prod": [
"bin/composer-install",
"bin/build prod"
]
}
}