2023-02-16 13:02:27 +09:00
|
|
|
# Composer package from CoreLibs
|
|
|
|
|
|
|
|
|
|
This is just the lib/CoreLibs folder in a composer package.
|
|
|
|
|
|
|
|
|
|
For local install only
|
|
|
|
|
|
2023-02-17 13:15:55 +09:00
|
|
|
## Setup from central composer
|
2023-02-16 13:02:27 +09:00
|
|
|
|
2023-02-17 13:15:55 +09:00
|
|
|
| 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/corelibs-composer-all": "@dev"
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
|
|
|
|
"secure-http": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For live settings
|
2023-02-16 13:02:27 +09:00
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"repositories": [
|
|
|
|
|
{
|
2023-02-17 13:15:55 +09:00
|
|
|
"type": "composer",
|
|
|
|
|
"url": "https://composer.egplusww.jp"
|
2023-02-16 13:02:27 +09:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"require": {
|
|
|
|
|
"egrajp/corelibs-composer-all": "@dev"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|