[CakePHP2]アプリケーションのスケルトン構築手順メモ

久しぶりにCakePHP2系の案件なので、アプリケーションの骨組みとなるスケルトン構築手順についてメモします。

ComposerでCakePHP2系のインストール

composer.pharにPATHが通っている前提で進めます。*1

基本的には「応用インストール – 2.x」このページの通り進めますが、異なるやり方をする箇所は都度記述します。

composer.jsonを作成

CakePHPをcomposerインストールするためのcomposer.jsonを作成します。
コンソールから

composer require cakephp/cakephp "<3.0.0"

上記のようにインストールすることも出来ますが、Cookbookにならってvendor-dirVendorに変更*2 するため、マニュアル通りすすめます。
ちなみにインストールするパスは/var/www/とし、cakephpのバージョンは"<3.0.0"で2系の最新となるように設定します。

/var/www/composer.json

{
    &quot;name&quot;: &quot;example-app&quot;,
    &quot;require&quot;: {
        &quot;cakephp/cakephp&quot;: &quot;&lt;3.0.0&quot;
    },
    &quot;config&quot;: {
        &quot;vendor-dir&quot;: &quot;Vendor/&quot;
    }
}

さらに、PHPUnitやCakePHPのプラグインDebugkitなどのライブラリもcomposer.jsonに追加します。

PHPUnit ? The PHP Testing Framework
cakephp/debug_kit at 2.2
cakephp/cakephp-codesniffer: CakePHP Code Sniffer
CakeDC/users at 2.x
slywalker/cakephp-plugin-boost_cake: Bootstrap Plugin for CakePHP

{
  &quot;name&quot;: &quot;astha/example-app&quot;,
  &quot;description&quot;: &quot;The CakePHP2 Skeleton for Astha&quot;,
  &quot;authors&quot;: [
    {
      &quot;name&quot;: &quot;Astha co.ltd.&quot;,
    }
  ],
  &quot;require&quot;: {
    &quot;php&quot;: &quot;&gt;=5.3.0&quot;,
    &quot;cakephp/cakephp&quot;: &quot;&gt;=2.7.9,&lt;3.0.0&quot;,
    &quot;cakedc/users&quot;: &quot;2.*&quot;
  },
  &quot;require-dev&quot;: {
    &quot;phpunit/phpunit&quot;: &quot;3.7.*&quot;,
    &quot;cakephp/debug_kit&quot; : &quot;&gt;=2.2.4,&lt;3.0.0&quot;,
    &quot;slywalker/boost_cake&quot;: &quot;*&quot;,
    &quot;cakephp/cakephp-codesniffer&quot;: &quot;&gt;=1.0.0&quot;
  },
  &quot;config&quot;: {
    &quot;vendor-dir&quot;: &quot;Vendor/&quot;
  },
  &quot;extra&quot;: {
    &quot;installer-paths&quot;: {
      &quot;./Common/plugins/{$name}/&quot;: [
        &quot;cakephp/debug_kit&quot;,
        &quot;slywalker/boost_cake&quot;,
    &quot;cakedc/users&quot;
      ]
    }
  }
}

注目すべきはconfigではvendorのディレクトリを指定していることに、extraでCakePHPのプラグインのインストールパスを指定していることです。

/Common/plugins/{$name}/というパスは、複数のアプリケーションでプラグインやモデルを使い回せるように弊社で行っている独特な指定なので、通常の環境には当てはまらないことに注意してください。

composer install

コンソールからcomposer installを実行。

cd /var/www
composer install

bakeコマンドでprojectを作成

今までの作業で/var/www/Vendor/bincakeコマンドが置かれているので以下のコマンドでappプロジェクトを作成する。

Vendor/bin/cake bake project /var/www/app

/var/wwwappディレクトリが作成され、必要なファイルが一式揃う。

コアのパス修正

bakeで作成されたプロジェクトから参照されるCAKE_CORE_INCLUDE_PATHが正しくないので、次の箇所を修正する。

app/webroot/index.php
DS . APP_DIRが不要。

define(&#039;CAKE_CORE_INCLUDE_PATH&#039;,  ROOT . DS . APP_DIR . DS . &#039;Vendor&#039; . DS . &#039;cakephp&#039; . DS . &#039;cakephp&#039; . DS . &#039;lib&#039;);
↓
define(&#039;CAKE_CORE_INCLUDE_PATH&#039;,  ROOT . DS . &#039;Vendor&#039; . DS . &#039;cakephp&#039; . DS . &#039;cakephp&#039; . DS . &#039;lib&#039;);

CakePHPの初期設定

app/Config内のファイルを設定していきます。

core.php

このファイルで必ず触らなければならないのはSecurity.saltSecurity.cipherSeedです。直前のコメントに従ってそれぞれ任意の文字列を指定します。

bootstrap.php

App::Build

弊社ではModelHelperComponentPluginを複数のアプリケーションで使い回せるように、ルートディレクトリにCommonディレクトリを作成して*3 格納しています。
そのためApp::buildを以下のように設定します。

    App::build(array(
        &#039;Model&#039; =&gt; array(ROOT . DS . &#039;Common&#039; . DS . &#039;Model&#039; . DS),
        &#039;Model/Datasource&#039; =&gt; array(ROOT . DS . &#039;Common&#039; . DS . &#039;Model&#039; . DS . &#039;Datasource&#039; . DS),
        &#039;Model/Behavior&#039; =&gt; array(ROOT . DS . &#039;Common&#039; . DS . &#039;Model&#039; . DS . &#039;Behavior&#039; . DS),
        &#039;View/Helper&#039; =&gt; array(
            ROOT . DS . &#039;Common&#039; . DS . &#039;Helper&#039; . DS,
            APP . DS . &#039;View&#039; . DS . &#039;Helper&#039; . DS,
        ),
        &#039;Controller/Component&#039; =&gt; array(ROOT . DS . &#039;Common&#039; . DS . &#039;Component&#039; . DS),
        &#039;Plugin&#039; =&gt; array(ROOT . DS . &#039;Common&#039; . DS . &#039;plugins&#039; . DS, APP . DS . &#039;Plugin&#039; . DS),
    ));

CakePlugin::load

プラグインのロードの記述。

    CakePlugin::load(&#039;DebugKit&#039;);
    CakePlugin::load(&#039;BoostCake&#039;);
    CakePlugin::load(&#039;Users&#039;, [&#039;routes&#039; =&gt; true]);

Usersプラグインの設定

    // Users設定
    Configure::write(&#039;Users.emailConfig&#039;, &#039;default&#039;);
    Configure::write(&#039;App.defaultEmail&#039;,&#039;info@example.com&#039;);
    Configure::write(&#039;Users.roles&#039;, array(
        &#039;admin&#039; =&gt; &#039;管理者&#039;,
        &#039;user&#039; =&gt; &#039;一般ユーザ&#039;
    ));
    // ユーザ自身の登録を許さない
    Configure::write(&#039;Users.allowRegistration&#039;, false);

database.php

データベースの設定

email.php

メール送信設定

  1. 通っていない環境ならcomposer/[設置場所]/composer.pharに読み替えてください []
  2. デフォルトではvendorとなる []
  3. 今回なら/var/www/Common []
スポンサーリンク
336x280_1
336x280_1

シェアする

  • このエントリーをはてなブックマークに追加

フォローする

スポンサーリンク
336x280_1