/symfony_demo

Demo app to practice symfony

Primary LanguagePHP

Symfony Demo App

========================

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

Requirements

Installation

Clone this repo:

$ git clone https://github.com/heilop/symfony_demo.git

Usage

There's no need to configure anything to run the application. If you have installed the [Symfony client][4] binary, run this command to run the built-in web server and access the application in your browser at http://localhost:8000:

$ cd symfony_demo/
$ composer install
$ php bin/console server:run

If you don't have the Symfony client installed, run php bin/console server:run. Alternatively, you can configure a web server like Nginx or Apache to run the application.

Tests

Execute this command to run tests:

$ cd my_project/
$ ./bin/phpunit