1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

php artisan migrate で autoload_real.php のシンタックスエラーが出た話

Posted at

php artisan migrate でエラー

$ php artisan migrate
PHP Parse error:  syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting ']' in /home/vagrant/***/vendor/composer/autoload_real.php on line 71

Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting ']' in /home/vagrant/***/vendor/composer/autoload_real.php on line 71

composer update でもエラー

$ composer update

PHP Fatal error:  Allowed memory size of 1610612736 bytes exhausted (tried to allocate 134217736 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/RuleSet.php on line 83

Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 134217736 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/RuleSet.php on line 83

Check https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors for more info on how to handle out of memory errors.⏎ 

composer i は成功するが、今度は autoload_static.php でエラー

$ composer i
# 成功
$ php artisan migrate
PHP Parse error:  syntax error, unexpected 'C' in /home/vagrant/***/vendor/composer/autoload_static.php on line 8765

Parse error: syntax error, unexpected 'C' in /home/vagrant/***/vendor/composer/autoload_static.php on line 8765

/vendor/composer/autoload_static.php を削除

$ rm /vendor/composer/autoload_static.php
$ php artisan migrate
PHP Warning:  require_once(/home/vagrant/***/vendor/composer/autoload_static.php): failed to open stream: No such file or directory in /home/vagrant/***/vendor/composer/autoload_real.php on line 28

Warning: require_once(/home/vagrant/***/vendor/composer/autoload_static.php): failed to open stream: No such file or directory in /home/vagrant/***/vendor/composer/autoload_real.php on line 28
PHP Fatal error:  require_once(): Failed opening required '/home/vagrant/***/vendor/composer/autoload_static.php' (include_path='.:/usr/share/php') in /home/vagrant/***/vendor/composer/autoload_real.php on line 28

Fatal error: require_once(): Failed opening required '/home/vagrant/***/vendor/composer/autoload_static.php' (include_path='.:/usr/share/php') in /home/vagrant/***/vendor/composer/autoload_real.php on line 28

/vendor/composer/autoload_real.php を削除

$ rm /vendor/composer/autoload_real.php
$ php artisan migrate
PHP Warning:  require_once(/home/vagrant/***/vendor/composer/autoload_real.php): failed to open stream: No such file or directory in /home/vagrant/***/vendor/autoload.php on line 5

Warning: require_once(/home/vagrant/***/vendor/composer/autoload_real.php): failed to open stream: No such file or directory in /home/vagrant/***/vendor/autoload.php on line 5
PHP Fatal error:  require_once(): Failed opening required '/home/vagrant/***/vendor/composer/autoload_real.php' (include_path='.:/usr/share/php') in /home/vagrant/***/vendor/autoload.php on line 5

Fatal error: require_once(): Failed opening required '/home/vagrant/***/vendor/composer/autoload_real.php' (include_path='.:/usr/share/php') in /home/vagrant/***/vendor/autoload.php on line 5

composer i 再度実行で成功

$ composer i
$ php artisan migrate
# 成功

結論

vender/composer/ 配下は composer によって自動生成されるので、その配下のファイルでエラーが出たら怖がらずに削除して、再度 composer i すればよし。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?