2017 © Pedro Peláez
 

project symfony-3-base-project

image

itrascastro/symfony-3-base-project

  • Friday, February 19, 2016
  • by itrascastro
  • Repository
  • 4 Watchers
  • 49 Stars
  • 602 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 10 Forks
  • 0 Open issues
  • 4 Versions
  • 3 % Grown

The README.md

Symfony 3 Base Project

Installed bundles and other stuff

  • FriendsOfSymfony/FOSUserBundle
  • Your own UserBundle to extend from FosUserBundle (with createdAt and updatedAt extra fields added)
  • KnpLabs/KnpPaginatorBundle
  • Bootstrap 3 with horizontal login
  • Form templates
  • Symfony Reverse Proxy configured to allow esi parts
  • phpunit/phpunit (with a symbolic link under your bin folder. Simply run './bin/phpunit')
  • Atlantic18/DoctrineExtensions (Slug generation)
  • twig/extensions (time_diff)
  • translation enabled in config
  • symfony/assetic-bundle installed and configured
  • doctrine/doctrine-fixtures-bundle
  • vich/uploader-bundle installed and configured (with an example)

Installation

PHP >= 5.5.9 required, (*1)

Installing Composer

Composer is the dependency manager used by modern PHP applications and it can also be used to create new applications., (*2)

Download the installer from getcomposer.org/download, execute it and follow the instructions., (*3)

Creating a new project with Composer

php composer.phar create-project itrascastro/symfony-3-base-project my_project_name, (*4)

If you did a global install and do not have the composer.phar in that directory run this instead:, (*5)

composer create-project itrascastro/symfony-3-base-project my_project_name, (*6)

The Versions