gitのコミットメッセージみたいだな
- ~/app/Console/cake.php
<?php ... // the following lines differ from its sibling // /app/Console/cake.php if (file_exists($composerInstall . DS . $dispatcher)) { $install = $composerInstall; } elseif (!file_exists($install . DS . $dispatcher)) { // ここが絶対パスで固定になっている $install = $root . PATH_SEPARATOR . DS . 'Users' . DS . 'username' . DS . 'git' . DS . 'cake-app' . DS . 'Vendor' . DS . 'cakephp' . DS . 'cakephp' . DS . 'lib'; }
このままだと、本番にあげるとか環境が変わった場合にライブラリファイルがロードできず問題になる。なので、汎用的にする。
<?php ... // the following lines differ from its sibling // /app/Console/cake.php if (file_exists($composerInstall . DS . $dispatcher)) { $install = $composerInstall; } elseif (!file_exists($install . DS . $dispatcher)) { $install = $root . PATH_SEPARATOR . $root . DS . 'Vendor' . DS . 'cake-app' . DS . 'cakephp' . DS . 'lib'; }
$root
を使えば、~/cake-app
までのディレクトリを実行した時に探してくれるので、これで環境に依存しないようになったと思う。