Update gitignore file and readme
This commit is contained in:
35
ReadMe.md
35
ReadMe.md
@@ -4,16 +4,43 @@ This is just the lib/CoreLibs folder in a composer package.
|
||||
|
||||
For local install only
|
||||
|
||||
## Setup
|
||||
## Setup from central composer
|
||||
|
||||
In the composer.json file add the following
|
||||
| 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": "vcs",
|
||||
"url": "https://git.egplusww.jp/Composer/CoreLibs-Composer-All"
|
||||
"type": "composer",
|
||||
"url": "http://composer.tokyo.tequila.jp"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"egrajp/corelibs-composer-all": "@dev"
|
||||
},
|
||||
"config": {
|
||||
"secure-http": false
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
For live settings
|
||||
|
||||
```json
|
||||
{
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://composer.egplusww.jp"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
|
||||
Reference in New Issue
Block a user