After running magestead new m1-base with the options:
- OS: Ubuntu
- Server: Apache
- PHP: 56
- Install: Magento 1
- Base URL: m1base.dev
- Currency: USD
- Locale: en_US
- Git: NO
I get the error shown below. The source of the problem appears to be that composer install is running on my host machine which has PHP 7 installed. If this is the case, my expectations are that the guest machine should be executing composer install.
Bringing machine 'local' up with 'virtualbox' provider...
==> local: Importing base box 'richdynamix/magestead-ubuntu14-apache-php56'...
==> local: Matching MAC address for NAT networking...
==> local: Checking if box 'richdynamix/magestead-ubuntu14-apache-php56' is up to date...
==> local: Setting the name of the VM: m1base_local_1494249646557_91359
It appears your machine doesn't support NFS, or there is not an
adapter to enable NFS on this machine for Vagrant. Please verify
that `nfsd` is installed on your machine, and try again. If you're
on Windows, NFS isn't supported. If the problem persists, please
contact Vagrant support.
Installing Magento with Composer
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for magetest/magento-behat-extension dev-feature/Behat3 -> satisfiable by magetest/magento-behat-extension[dev-feature/Behat3].
- magetest/magento-behat-extension dev-feature/Behat3 requires php ~5.3 -> your PHP version (7.0.15) does not satisfy that requirement.
Installing Magento Software
VM must be running to open SSH connection. Run `vagrant up`
to start the virtual machine.
PHP Warning: file_get_contents(/home/tyler/PhpStorm/Projects/Tyler/m1base/public/app/etc/local.xml): failed to open stream: No such file or directory in /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/MagentoProject.php on line 214
PHP Stack trace:
PHP 1. {main}() /home/tyler/.config/composer/vendor/richdynamix/magestead/magestead:0
PHP 2. Symfony\Component\Console\Application->run() /home/tyler/.config/composer/vendor/richdynamix/magestead/magestead:66
PHP 3. Symfony\Component\Console\Application->doRun() /home/tyler/.config/composer/vendor/symfony/console/Application.php:124
PHP 4. Symfony\Component\Console\Application->doRunCommand() /home/tyler/.config/composer/vendor/symfony/console/Application.php:200
PHP 5. Symfony\Component\Console\Command\Command->run() /home/tyler/.config/composer/vendor/symfony/console/Application.php:835
PHP 6. Magestead\Command\NewCommand->execute() /home/tyler/.config/composer/vendor/symfony/console/Command/Command.php:264
PHP 7. Magestead\Installers\Project::create() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Command/NewCommand.php:54
PHP 8. Magestead\Installers\MagentoProject->__construct() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/Project.php:20
PHP 9. Magestead\Installers\MagentoProject->installMagento() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/MagentoProject.php:33
PHP 10. Magestead\Installers\MagentoProject->configureRedis() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/MagentoProject.php:80
PHP 11. Magestead\Installers\MagentoProject->updateConfigXml() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/MagentoProject.php:204
PHP 12. file_get_contents() /home/tyler/.config/composer/vendor/richdynamix/magestead/src/Magestead/Installers/MagentoProject.php:214
[Exception]
String could not be parsed as XML
After running
magestead new m1-basewith the options:I get the error shown below. The source of the problem appears to be that composer install is running on my host machine which has PHP 7 installed. If this is the case, my expectations are that the guest machine should be executing composer install.