Skip to content

symfony/demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bf70bfe · Oct 28, 2022
Oct 28, 2022
May 6, 2022
Dec 2, 2021
Jun 21, 2022
Aug 27, 2022
Jun 5, 2020
Jul 22, 2022
Oct 28, 2022
Aug 21, 2022
Aug 27, 2022
Jul 17, 2022
Nov 1, 2018
Dec 8, 2015
Jun 2, 2021
Jun 1, 2021
Dec 2, 2021
Oct 4, 2022
Apr 27, 2017
Jan 3, 2022
Jun 21, 2022
Jun 21, 2022
Oct 28, 2022
Jul 3, 2022
Aug 27, 2022
Oct 11, 2021
Dec 2, 2021
Jun 21, 2022
Jun 2, 2021
Jul 22, 2022

Repository files navigation

Symfony Demo Application

The "Symfony Demo Application" is a reference application created to show how to develop applications following the Symfony Best Practices.

You can also learn about these practices in the official Symfony Book.

Requirements

Installation

Download Symfony to install the symfony binary on your computer and run this command:

$ symfony new --demo my_project

Alternatively, you can use Composer:

$ composer create-project symfony/symfony-demo my_project

If you want to test the demo without installing anything locally, you can also deploy it on Platform.sh, the official Symfony PaaS:

Deploy on Platform.sh

Usage

There's no need to configure anything to run the application. If you have installed Symfony binary, run this command:

$ cd my_project/
$ symfony serve

Then access the application in your browser at the given URL (https://localhost:8000 by default).

If you don't have the Symfony binary installed, run php -S localhost:8000 -t public/ to use the built-in PHP web server or configure a web server like Nginx or Apache to run the application.

Tests

Execute this command to run tests:

$ cd my_project/
$ ./bin/phpunit