تقنية المعلومات

Symfony Sites

http://blog.garylong.fr/developpement/php/configurer-un-environnement-wamp-avec-symfony-et-git/ https://knpuniversity.com/screencast/symfony-best-practices http://ifzenelse.net/en/introduction-symfony-2-getting-started-basic-summaryhttps://symfony.com/doc/master/cookbook/composer.html http://www.tutodidacte.com/installer-symfony2-sur-windows

Doctrine

Example Class Doctrine /** * @ORM\Column(type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ protected $id; /** * @ORM\Column(type="string", length=100) */ protected $name; /** * @ORM\Column(type="decimal", scale=2) */ protected $price; /** * @ORM\Column(type="text") */ protected $description; } Générer les Getter et Setter $ php app/console doctrine:generate:entities AppBundle/Entity/Product

Visualizing & Debugging Routes

While adding and customizing routes, it's helpful to be able to visualize and get detailed information about your routes. A great way to see every route in your application is via the debug:router console command. Execute the command by running the following from the root of your project. 1 $ php app/console debug:router