syrusakbary / symfony-starter-36e

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Installation

There are 3 different ways of installing this project depending on your needs:

Download Composer and use the composer binary installed on your computer to run these commands:

composer install
php bin/console asset-map:compile

Usage

There's no need to configure anything before running the application. There are 2 different ways of running this application depending on your needs:

Option 1. You can run this command to use the built-in PHP web server:

php -S localhost:8000 -t public/

Option 2. Use Wasmer.

wasmer run . --net

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

Tests

Execute this command to run tests:

./bin/phpunit

About

License:MIT License


Languages

Language:PHP 67.6%Language:Twig 21.1%Language:SCSS 7.9%Language:JavaScript 3.0%Language:CSS 0.3%