All Projects → symfony → Demo

symfony / Demo

Licence: mit
Symfony Demo Application

Programming Languages

PHP
23972 projects - #3 most used programming language
Twig
543 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
shell
77523 projects

Projects that are alternatives of or similar to Demo

Easy Admin Demo
A demo application to showcase EasyAdmin features
Stars: ✭ 219 (-89.58%)
Mutual labels:  symfony-application, symfony, demo
Ezplatform Demo
Fork of "ezplatform" meta repository, contains code and dependencies for demo distribution of eZ Platform. Not recommended for a clean install for new projects, but great for observation and learning!
Stars: ✭ 42 (-98%)
Mutual labels:  symfony-application, symfony, demo
Sflive Paris2016 Workflow
Demo app for the new symfony/workflow component
Stars: ✭ 160 (-92.39%)
Mutual labels:  symfony, demo
Crm Application
OroCRM - an open-source Customer Relationship Management application.
Stars: ✭ 785 (-62.65%)
Mutual labels:  symfony-application, symfony
Pd Admin
Powerful Admin Dashboard for Symfony 5
Stars: ✭ 70 (-96.67%)
Mutual labels:  symfony-application, symfony
Wallabag
wallabag is a self hostable application for saving web pages: Save and classify articles. Read them later. Freely.
Stars: ✭ 6,392 (+204.09%)
Mutual labels:  symfony-application, symfony
Symfony Cmf
Meta package tying together all the key packages of the Symfony CMF project.
Stars: ✭ 742 (-64.7%)
Mutual labels:  symfony-application, symfony
Accompli
An easy to use and extendable deployment tool for (PHP) projects.
Stars: ✭ 9 (-99.57%)
Mutual labels:  symfony-application, symfony
Explicit Architecture Php
This repository is a demo of Explicit Architecture, using the Symfony Demo Application.
Stars: ✭ 372 (-82.3%)
Mutual labels:  symfony, demo
Web Publisher
Superdesk Publisher - the next generation publishing platform for journalists and newsrooms.
Stars: ✭ 82 (-96.1%)
Mutual labels:  symfony-application, symfony
Kimai2
Kimai v2 is a web-based multiuser time-tracking application. Free for everyone: freelancers, agencies, companies, organizations - all can track their times, generate invoices and more. SaaS version available at https://www.kimai.cloud
Stars: ✭ 1,216 (-42.15%)
Mutual labels:  symfony-application, symfony
Sylius Standard
Open Source eCommerce Application on top of Symfony
Stars: ✭ 165 (-92.15%)
Mutual labels:  symfony-application, symfony
Symfony Rest Edition
Fork from symfony-standard edition with additional rest features.
Stars: ✭ 643 (-69.41%)
Mutual labels:  symfony-application, symfony
Ec Cube
EC-CUBE is the most popular e-commerce solution in Japan
Stars: ✭ 591 (-71.88%)
Mutual labels:  symfony-application, symfony
En Marche.fr
Le site principal du mouvement En Marche !
Stars: ✭ 743 (-64.65%)
Mutual labels:  symfony-application, symfony
Bolt
Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL or PostgreSQL.
Stars: ✭ 4,136 (+96.76%)
Mutual labels:  symfony-application, symfony
Paraunit
Run PHPUnit tests in parallel
Stars: ✭ 104 (-95.05%)
Mutual labels:  symfony-application, symfony
Ezplatform
Meta repository that pulls in all dependencies for clean distribution of Ibexa Platform.
Stars: ✭ 322 (-84.68%)
Mutual labels:  symfony-application, symfony
Cmf Sandbox
Base project for trying CMF components integration
Stars: ✭ 368 (-82.49%)
Mutual labels:  symfony-application, symfony
Symfony Ddd Edition
Symfony standard edition with DDD architecture.
Stars: ✭ 78 (-96.29%)
Mutual labels:  symfony-application, symfony

Symfony Demo Application

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

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

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].