Run a Symfony app locally, install nothing besides Nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-symfony.git
# cd into the Symfony app
cd nanobox-symfony
# Add a convenient way to access your app from the browser
nanobox dns add local symfony.dev
# Run Symfony as you would normally, with Nanobox
nanobox run php bin/console server:run 0.0.0.0
Visit your app at symfony.dev:8000
With Nanobox, you don't have to have anything installed on your machine to run your app:
# drop into a Nanobox console
nanobox run
# where Symfony is installed,
php -v
# your packages are available,
composer show
# and your code is mounted
ls
For more details about running Symfony apps with Nanobox visit guides.nanobox.io/php/symfony/