2

I'm getting the following error when I try to run php artisan on a clean install of Laravel 5.1.43 on a Vagrant box. I've listed the versions below.

PHP Fatal error:  Class 'Symfony\Component\HttpFoundation\ParameterBag' not found in /var/www/vendor/symfony/http-foundation/Request.php on line 240
PHP Stack trace:
PHP   1. {main}() /var/www/artisan:0
PHP   2. Illuminate\Foundation\Console\Kernel->handle() /var/www/artisan:36
PHP   3. Illuminate\Foundation\Console\Kernel->bootstrap() /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:105
PHP   4. Illuminate\Foundation\Application->bootstrapWith() /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:208
PHP   5. Illuminate\Foundation\Bootstrap\SetRequestForConsole->bootstrap() /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:203
PHP   6. Symfony\Component\HttpFoundation\Request::create() /var/www/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php:20
PHP   7. Symfony\Component\HttpFoundation\Request::createRequestFromFactory() /var/www/vendor/symfony/http-foundation/Request.php:398
PHP   8. Symfony\Component\HttpFoundation\Request->__construct() /var/www/vendor/symfony/http-foundation/Request.php:1943
PHP   9. Symfony\Component\HttpFoundation\Request->initialize() /var/www/vendor/symfony/http-foundation/Request.php:222


  [Symfony\Component\Debug\Exception\FatalErrorException]
  Class 'Symfony\Component\HttpFoundation\ParameterBag' not found

Host machine:

  • macOS 10.13 17A365
  • Vagrant 2.0.0
  • Composer 1.5.2 2017-09-11 16:59:25

Vagrant box:

  • Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-132-generic x86_64)
  • PHP 5.6.31-6+ubuntu14.04.1+deb.sury.org+1 (cli) with Xdebug v2.5.5

If it is helpful, I can upload my Vagrantfile and install.sh files, and also my composer.json file.

Stephan Vierkant
  • 9,674
  • 8
  • 61
  • 97
Michael
  • 4,282
  • 9
  • 55
  • 89
  • why you do clean install of so ancient Laravel version? – Marcin Orlowski Sep 29 '17 at 11:30
  • Because that is the version we are using in production (we are looking to upgrade it, but that isn't the issue at hand). The issue has arisen when I am provisioning a new dev machine. – Michael Sep 29 '17 at 11:31

1 Answers1

2

This is due to a new bug with APFS and NFS. Refer to https://github.com/hashicorp/vagrant/issues/8788 for more information

Chin Lee
  • 36
  • 3
  • I had seen this before but dismissed it because I couldn't understand why select/specific files were not synced. – Michael Oct 05 '17 at 07:51