4 Commits

Author SHA1 Message Date
12a2f77af7 fixed settings installer 2026-01-07 12:54:11 +05:00
ee02ecd474 dependencies 2026-01-06 12:42:09 +05:00
913dfb8a92 fixed $ 2025-11-04 16:19:18 +07:00
372d008545 added copying *.sample files script 2025-11-04 16:12:31 +07:00
2 changed files with 13 additions and 4 deletions

View File

@@ -22,10 +22,12 @@
"issues": "https://git.svoboda.works${REPO_LINK}/issues" "issues": "https://git.svoboda.works${REPO_LINK}/issues"
}, },
"require": { "require": {
"php": "^8.4", "php": "^8.5",
"mirzaev/minimal": "^3.7", "mirzaev/minimal": "^3.8",
"mirzaev/baza": "^3.3", "mirzaev/baza": "^3.3",
"mirzaev/languages": "^1", "mirzaev/record": "^1.0",
"mirzaev/languages": "^1.0",
"svoboda/time": "^1.0",
"twig/twig": "^3.2", "twig/twig": "^3.2",
"twig/extra-bundle": "^3.7", "twig/extra-bundle": "^3.7",
"twig/intl-extra": "^3.10" "twig/intl-extra": "^3.10"

View File

@@ -8,3 +8,10 @@ if [ -d author ]; then
mv author ${REPO_OWNER} mv author ${REPO_OWNER}
fi fi
for i in ${REPO_OWNER}/${REPO_NAME}/system/settings/*.sample; do
echo $$i;
if [ ! -f "$${i/.sample/}" ]; then
cp "$$i" "$${i/.sample/}";
echo $${i/.sample/};
fi
done