2017 © Pedro Peláez
 

project high-quality-bundles-project

The "Symfony Standard Edition" adapted for my High Quality Bundles workshop

image

matthiasnoback/high-quality-bundles-project

The "Symfony Standard Edition" adapted for my High Quality Bundles workshop

  • Friday, November 20, 2015
  • by matthiasnoback
  • Repository
  • 10 Watchers
  • 24 Stars
  • 252 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 10 Forks
  • 0 Open issues
  • 16 Versions
  • 0 % Grown

The README.md

Getting started

  1. Create a new project:
composer create-project matthiasnoback/high-quality-bundles-project [project-directory] dev-master

N.B. When asked to keep the source control (Git) files, choose "Yes"., (*1)

Project branches/versions

Be sure to add the version requirement dev-master when installing this project (or checkout the master branch if you clone it). During the workshop we will create a separate branch for the various changes that we make., (*2)

  1. When asked, supply the requested information concerning the MySQL database (make sure you run a MySQL server)., (*3)

  2. Do whatever is needed to get your file permissions right (see also Setting up Permissions)., (*4)

  3. Then see if everything works:, (*5)

app/console
  1. Create the database and the database schema:
app/console doctrine:database:create
app/console doctrine:schema:create
  1. Configure the web server to serve the /web directory of this project.

If you run PHP 5.4 or higher, you don't need to configure the web server for this project, because you can use the Symfony command:, (*6)

app/console server:run

Check if everything works. When you request http://127.0.0.1:8000/ in the browser you should see a list of existing users., (*7)

The Versions