项目作者: snsvignesh

项目描述 :
The "Symfony Standard Edition" distribution
高级语言: PHP
项目地址: git://github.com/snsvignesh/Symfony.git
创建时间: 2017-08-03T05:30:57Z
项目社区:https://github.com/snsvignesh/Symfony

开源协议:MIT License

下载


Symfony Demo Application

The “Symfony Demo Application” is a reference application created to show how
to develop Symfony applications following the recommended best practices.

Build Status

Requirements

If unsure about meeting these requirements, download the demo application and
browse the http://localhost:8000/config.php script to get more detailed
information.

Installation

First, install the Symfony Installer
if you haven’t already. Then, install the Symfony Demo Application executing
this command anywhere in your system:

  1. $ symfony demo
  2. # if you're using Windows:
  3. $ php symfony demo

If the demo command is not available, update your Symfony Installer to the
most recent version executing the symfony self-update command.

NOTE

If you can’t use the Symfony Installer, download and install the demo
application using Git and Composer:

  1. $ git clone https://github.com/symfony/symfony-demo symfony_demo
  2. $ cd symfony_demo/
  3. $ composer install --no-interaction

Usage

There is no need to configure a virtual host in your web server to access the application.
Just use the built-in web server:

  1. $ cd symfony_demo/
  2. $ php bin/console server:run

This command will start a web server for the Symfony application. Now you can
access the application in your browser at http://localhost:8000. You can
stop the built-in web server by pressing Ctrl + C while you’re in the
terminal.

NOTE

If you want to use a fully-featured web server (like Nginx or Apache) to run
Symfony Demo application, configure it to point at the web/ directory of the project.
For more details, see:
https://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html

Troubleshooting

The current Symfony Demo application uses Symfony 3.x version. If you want to
use the legacy Symfony 2.8 version, clone the Git repository and checkout the
v0.8.4 tag, which is the last one compatible with Symfony 2.8:

  1. $ git clone https://github.com/symfony/symfony-demo symfony_demo
  2. $ cd symfony_demo/
  3. $ git checkout tags/v0.8.4 -b v0.8.4
  4. $ composer install