Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Aug 4, 2024
1 parent 4e29b06 commit 0b30ada
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion 5/introduce/use_for_cakephp.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ CakePHP4で開発しているあなたのアプリケーションで、baserCMS
### composer でインストール

```shell
// baserCMSコアをインストール
composer require baserproject/baser-core
// サンプル用のデザインテーマをインストール
composer require baserproject/bc-theme-sample
// もしくは、BcColumnテーマをインストール
composer require baserproject/bc-column
```

開発版を取得する場合は、`composer.json``"minimum-stability": "dev"` を追加した上で次を実行します。
```shell
composer require baserproject/baser-core:^5.0-dev --with-all-dependencies
composer require baserproject/baser-core:5.1.x --with-all-dependencies
```

### Application にプラグインを追加する
Expand All @@ -30,4 +36,10 @@ https://your-host-name/install

※ インストーラーがうまく起動しない場合は、`/config/app_local.php` が存在するか確認してください。存在しない場合は、`/config/app_local.example.php` をコピーして作成してください。

### トップページをbaserCMSのトップページにする

`/config/routes.php` の次の行をコメントアウトします。

```php
// $builder->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
```

0 comments on commit 0b30ada

Please sign in to comment.