1
composer update
をLaravel 4プロジェクトで使用しようとしています。それは次のように失敗し、返します。私も更新し、その後composer dump-autoload
を試してみましたLaravel 4プロジェクトでコンポーザを更新する際に問題が発生しました
PHP Fatal error: Call to undefined function Illuminate\Database\Eloquent\class_uses_recursive() in /home/dev.habbocreate.com/bootstrap/compiled.php on line 6416
{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Call to undefined function Illuminate\\Database\\Eloquent\\class_uses_recursive()","file":"\/home\/dev.habbocreate.com\/bootstrap\/compiled.php","line":6416}}Script php artisan clear-compiled handling the post-update-cmd event returned with error code 255
、またcomposer.lock
とvendors
フォルダを削除すると、その後、ここで
をreupdatingすることは、私に私に言っています私のcomposer.json
ファイル
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.2",
"hisorange/bbcoder": "dev-master",
"orchestra/imagine": "2.2.x",
"teepluss/gateway": "1.x",
"yangqi/htmldom": "dev-master",
"nubs/random-name-generator": "^1.0"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
}
ですより多くの説明を追加する必要がありますが、十分長い文章を作成すれば十分に投稿できるようになります。
でも 'ダンプautoload'とファイルを削除した後、同じエラー? – Samsquanch
@Samsquanch yep – Ben
ディレクトリでPHPコマンドを実行しているときにこのエラーが発生しますか?言って、「php artisan -v」? – Samsquanch