Update git ingore file, add Readme file

This commit is contained in:
2023-02-17 10:58:01 +09:00
parent 8d01c789e9
commit 668520a2bd
2 changed files with 56 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
vendor
composer.lock

55
ReadMe.md Normal file
View File

@@ -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"
}
}
```