# Installation Symfony composer create-project symfony/website-skeleton php bin/console make:migration php bin/console doctrine:migrations:migrate php bin/console make:controller DefaultController php bin/console make:controller PresentationController php bin/console make:controller CollectionController php bin/console make:controller LensController php bin/console make:controller ContactController php bin/console make:entity php bin/console make:crud // Activation des routes (génère le htacces) composer require symfony/apache-pack # Déploiement OVH php composer.phar install # Supprimer Doctrine du projet (on utilise Kiwi) composer remove symfony/orm-pack Suppression dans le composer.json des lignes suivantes : "doctrine/doctrine-bundle": "^2.5", "doctrine/doctrine-migrations-bundle": "^3.2", "doctrine/orm": "^2.10",