インストールした新しいバージョンの php を composer で使用するにはどうすればよいですか? すべてのローカル サーバーで php 5.4 をダウンロードして使用していますが、composer をダウンロードすると、Mac のデフォルトの #!/usr/local/bin/env バージョンである 5.3.15 がポイントされます。composer実行可能ファイルを編集して、使用するphpを変更しようとしましたが、実行可能ファイルが壊れました。
composer を使用して Laravel をインストールしようとしていますが、これが原因で間違ったバージョンをダウンロードしています。
これは、composer 実行可能ファイルの上部がどのように見えるかですが、その下には奇妙な文字がたくさんあります。
#!/usr/bin/env php
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view
* the license that is located at the bottom of this file.
*/
Phar::mapPhar('composer.phar');
define('COMPOSER_DEV_WARNING_TIME', 1366931166);
require 'phar://composer.phar/bin/composer';
laravel プロジェクトの composer.json
{
"require": {
"laravel/framework": "4.0.*@dev"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-update-cmd": "php artisan optimize"
},
"minimum-stability": "dev"
}