From 668520a2bd07fc321ac847c7618b1e0c57ccbaf4 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 17 Feb 2023 10:58:01 +0900 Subject: [PATCH] Update git ingore file, add Readme file --- .gitignore | 1 + ReadMe.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 ReadMe.md diff --git a/.gitignore b/.gitignore index 22d0d82..7579f74 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ vendor +composer.lock diff --git a/ReadMe.md b/ReadMe.md new file mode 100644 index 0000000..f3b5c5f --- /dev/null +++ b/ReadMe.md @@ -0,0 +1,55 @@ +# Composer package from Smarty Extended + +This is an updated package for smarty\smarty + +Adds: + +- translation block +- label and pos for checkboxes and radio buttons + +For local install only + +## Setup from central composer + +| Host | Location | Type | +| - | - | - | +| composer.tokyo.tequila.jp | soba-local | Local test | +| composer-local.tokyo.tequila.jp | udon-local | Local Live, no https | +| composer.egplusww.jp | udon | General Live (use this) | + +composer.json: + +For Local test, note that secure-http has to be turned off: + +```json +{ + "repositories": [ + { + "type": "composer", + "url": "http://composer.tokyo.tequila.jp" + } + ], + "require": { + "egrajp/smarty-extended": "@dev" + }, + "config": { + "secure-http": false + } +} +``` + +For live settings + +```json +{ + "repositories": [ + { + "type": "composer", + "url": "https://composer.egplusww.jp" + } + ], + "require": { + "egrajp/smarty-extended": "@dev" + } +} +```