Tutorial by Examples

The Symfony Installer is a command line tool that helps you to create new Symfony applications. It requires PHP 5.4 or higher. Downloading and installing the Symfony Installer on Linux / MacOS Open a terminal and execute the following commands: sudo mkdir -p /usr/local/bin sudo curl -LsS https:/...
If for some reason using the Symfony Installer is not an option, you can also create a new project using Composer. First of all, make sure you have installed Composer. Next, you can use the create-project command to create a new project: composer create-project symfony/framework-standard-edition m...
After creating a new Symfony application, you can use the server:run command to start a simple PHP web server, so you can access your new application from your web browser: cd my_project_name/ php bin/console server:run You can now visit http://localhost:8000/ to see the Symfony welcome page. ...

Page 1 of 1