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 index 63d38b8..a58ad6e 100644 --- a/ReadMe.md +++ b/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": {