├── .gitmodules ├── .idea ├── $CACHE_FILE$ ├── .gitignore ├── 3A45.iml ├── Symfony.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── php.xml ├── phpunit.xml └── vcs.xml ├── 21-22 ├── 2cinfo4 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── 2cinfo4.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── migrations │ │ ├── .gitignore │ │ └── Version20220221084429.php │ ├── phpunit.xml.dist │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── BienImmobilierController.php │ │ │ ├── ChauffeurController.php │ │ │ ├── ClubController.php │ │ │ ├── ProductController.php │ │ │ ├── ProprietaireController.php │ │ │ ├── StudentController.php │ │ │ ├── UserController.php │ │ │ └── VoitureController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── BienImmobilier.php │ │ │ ├── Chauffeur.php │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ ├── Proprietaire.php │ │ │ ├── Student.php │ │ │ └── Voiture.php │ │ ├── Form │ │ │ ├── BienImmobilierType.php │ │ │ ├── ChauffeurType.php │ │ │ ├── ClubType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── BienImmobilierRepository.php │ │ │ ├── ChauffeurRepository.php │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ ├── ProprietaireRepository.php │ │ │ ├── StudentRepository.php │ │ │ └── VoitureRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── bien_immobilier │ │ │ ├── add.html.twig │ │ │ └── index.html.twig │ │ ├── chauffeur │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── club │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── product │ │ │ └── index.html.twig │ │ ├── proprietaire │ │ │ └── index.html.twig │ │ ├── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ ├── user │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listFormation.html.twig │ │ └── voiture │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── louer.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A12 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A12.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── framework.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20220217100645.php │ │ ├── Version20220217102507.php │ │ └── Version20220303082243.php │ ├── phpunit.xml.dist │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClassroomController.php │ │ │ ├── FormationController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── Classroom.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ ├── SearchFormType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── ClassroomRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── formation │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A24 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A24.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20220218144016.php │ │ └── Version20220304132013.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── images │ │ │ └── github.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── CarController.php │ │ │ ├── ClassroomController.php │ │ │ ├── FormationController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── car │ │ │ └── index.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ └── index.html.twig │ │ ├── formation │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A25 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A25.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── symfony2.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20220221134730.php │ │ ├── Version20220221140017.php │ │ └── Version20220301131130.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ └── symfony-logo.png │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClassroomController.php │ │ │ ├── ProductController.php │ │ │ ├── ProjectController.php │ │ │ ├── StudentController.php │ │ │ └── UserController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── product │ │ │ └── index.html.twig │ │ ├── project │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── show.html.twig │ │ ├── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── user │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A44 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── 3A44.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20211008134913.php │ │ ├── Version20211022132149.php │ │ ├── Version20211028083643.php │ │ └── Version20211029163617.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── Pictures │ │ │ └── formation.jpeg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClassroomController.php │ │ │ ├── FirstController.php │ │ │ ├── FormationController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ ├── MaxMinType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listStudentByClass.html.twig │ │ │ └── update.html.twig │ │ ├── first │ │ │ ├── index.html.twig │ │ │ └── second.html.twig │ │ ├── formation │ │ │ ├── detail.html.twig │ │ │ ├── formations.html.twig │ │ │ └── index.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── searchStudentByAVG.html.twig │ │ │ └── show.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A46 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A44.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20211007093122.php │ │ ├── Version20211007101756.php │ │ ├── Version20211021090842.php │ │ └── Version20211027082613.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── images │ │ │ └── tunisie.png │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClassroomController.php │ │ │ ├── ClubEspritController.php │ │ │ ├── FormationController.php │ │ │ ├── StudentController.php │ │ │ └── TeacherController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ ├── SearchStudentByAvgType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listStudentByClassroom.html.twig │ │ │ └── update.html.twig │ │ ├── club_esprit │ │ │ ├── club.html.twig │ │ │ └── index.html.twig │ │ ├── formation │ │ │ ├── contact.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ ├── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── searchStudentByAVG.html.twig │ │ └── teacher │ │ │ ├── index.html.twig │ │ │ └── listTeacher.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 4SE4 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 4SE4.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bootstrap.php │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── dev │ │ │ │ ├── debug.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ └── routing.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── test │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ └── validator.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ └── dev │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20211007133933.php │ │ ├── Version20211014131722.php │ │ ├── Version20211021132841.php │ │ └── Version20211028144410.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── Front │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── img │ │ │ │ ├── about.jpg │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.png │ │ │ │ ├── hero-bg.jpg │ │ │ │ ├── portfolio │ │ │ │ │ ├── portfolio-1.jpg │ │ │ │ │ ├── portfolio-2.jpg │ │ │ │ │ ├── portfolio-3.jpg │ │ │ │ │ ├── portfolio-4.jpg │ │ │ │ │ ├── portfolio-5.jpg │ │ │ │ │ ├── portfolio-6.jpg │ │ │ │ │ ├── portfolio-7.jpg │ │ │ │ │ ├── portfolio-8.jpg │ │ │ │ │ ├── portfolio-9.jpg │ │ │ │ │ ├── portfolio-details-1.jpg │ │ │ │ │ ├── portfolio-details-2.jpg │ │ │ │ │ └── portfolio-details-3.jpg │ │ │ │ └── testimonials │ │ │ │ │ ├── testimonials-1.jpg │ │ │ │ │ ├── testimonials-2.jpg │ │ │ │ │ ├── testimonials-3.jpg │ │ │ │ │ ├── testimonials-4.jpg │ │ │ │ │ └── testimonials-5.jpg │ │ │ ├── js │ │ │ │ └── main.js │ │ │ └── libraries │ │ │ │ ├── aos │ │ │ │ ├── aos.css │ │ │ │ └── aos.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── boxicons │ │ │ │ ├── css │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── boxicons.css │ │ │ │ │ ├── boxicons.min.css │ │ │ │ │ └── transformations.css │ │ │ │ └── fonts │ │ │ │ │ ├── boxicons.eot │ │ │ │ │ ├── boxicons.svg │ │ │ │ │ ├── boxicons.ttf │ │ │ │ │ ├── boxicons.woff │ │ │ │ │ └── boxicons.woff2 │ │ │ │ ├── counterup │ │ │ │ └── counterup.min.js │ │ │ │ ├── icofont │ │ │ │ ├── fonts │ │ │ │ │ ├── icofont.woff │ │ │ │ │ └── icofont.woff2 │ │ │ │ └── icofont.min.css │ │ │ │ ├── isotope-layout │ │ │ │ ├── isotope.pkgd.js │ │ │ │ └── isotope.pkgd.min.js │ │ │ │ ├── jquery.easing │ │ │ │ └── jquery.easing.min.js │ │ │ │ ├── jquery │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ │ ├── owl.carousel │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── owl.carousel.css │ │ │ │ │ ├── owl.carousel.min.css │ │ │ │ │ ├── owl.theme.default.css │ │ │ │ │ ├── owl.theme.default.min.css │ │ │ │ │ ├── owl.theme.green.css │ │ │ │ │ ├── owl.theme.green.min.css │ │ │ │ │ └── owl.video.play.png │ │ │ │ ├── owl.carousel.js │ │ │ │ └── owl.carousel.min.js │ │ │ │ ├── php-email-form │ │ │ │ └── validate.js │ │ │ │ ├── venobox │ │ │ │ ├── venobox.css │ │ │ │ ├── venobox.js │ │ │ │ ├── venobox.min.css │ │ │ │ └── venobox.min.js │ │ │ │ └── waypoints │ │ │ │ └── jquery.waypoints.min.js │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClassroomController.php │ │ │ ├── ClubController.php │ │ │ ├── FormationEspritController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClubType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── classroom │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listStudentByClassroom.html.twig │ │ │ └── show.html.twig │ │ ├── club │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── formation_esprit │ │ │ ├── contact.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore └── 5SE3 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ ├── $CACHE_FILE$ │ ├── .gitignore │ ├── 5SE3.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── php.xml │ └── vcs.xml │ ├── bin │ ├── console │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ ├── bootstrap.php │ ├── bundles.php │ ├── packages │ │ ├── cache.yaml │ │ ├── dev │ │ │ ├── debug.yaml │ │ │ ├── monolog.yaml │ │ │ └── web_profiler.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── prod │ │ │ ├── deprecations.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── monolog.yaml │ │ │ └── routing.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── sensio_framework_extra.yaml │ │ ├── test │ │ │ ├── doctrine.yaml │ │ │ ├── framework.yaml │ │ │ ├── monolog.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ └── validator.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── annotations.yaml │ │ └── dev │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ └── services.yaml │ ├── migrations │ ├── .gitignore │ ├── Version20211008085822.php │ ├── Version20211008091122.php │ └── Version20211029083411.php │ ├── phpunit.xml.dist │ ├── public │ ├── images │ │ └── creation-organisme-formation-1.jpeg │ └── index.php │ ├── src │ ├── Controller │ │ ├── .gitignore │ │ ├── ClassroomController.php │ │ ├── ClubController.php │ │ ├── FormationController.php │ │ ├── ProductController.php │ │ └── StudentController.php │ ├── Entity │ │ ├── .gitignore │ │ ├── Classroom.php │ │ ├── Club.php │ │ └── Student.php │ ├── Form │ │ ├── ClassroomType.php │ │ ├── ClubType.php │ │ ├── SearchClubType.php │ │ └── StudentType.php │ ├── Kernel.php │ └── Repository │ │ ├── .gitignore │ │ ├── ClassroomRepository.php │ │ ├── ClubRepository.php │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ ├── base.html.twig │ ├── classroom │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ ├── list.html.twig │ │ └── update.html.twig │ ├── club │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ └── list.html.twig │ ├── formation │ │ ├── formations.html.twig │ │ └── index.html.twig │ ├── product │ │ ├── index.html.twig │ │ └── show.html.twig │ └── student │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ ├── list.html.twig │ │ ├── show.html.twig │ │ └── update.html.twig │ ├── tests │ └── bootstrap.php │ └── translations │ └── .gitignore ├── 22-23 ├── .idea │ ├── $CACHE_FILE$ │ ├── .gitignore │ ├── 22-23.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── php.xml │ └── vcs.xml ├── 1CINFO3 │ ├── about.html │ ├── images │ │ └── google.jpg │ ├── index.html │ ├── my_project_directory │ │ ├── .env │ │ ├── .env.test │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── inspectionProfiles │ │ │ │ └── profiles_settings.xml │ │ │ ├── modules.xml │ │ │ ├── my_project_directory.iml │ │ │ ├── php.xml │ │ │ ├── phpunit.xml │ │ │ └── vcs.xml │ │ ├── bin │ │ │ ├── console │ │ │ └── phpunit │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── bundles.php │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── debug.yaml │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── doctrine_migrations.yaml │ │ │ │ ├── framework.yaml │ │ │ │ ├── mailer.yaml │ │ │ │ ├── messenger.yaml │ │ │ │ ├── monolog.yaml │ │ │ │ ├── notifier.yaml │ │ │ │ ├── routing.yaml │ │ │ │ ├── security.yaml │ │ │ │ ├── sensio_framework_extra.yaml │ │ │ │ ├── translation.yaml │ │ │ │ ├── twig.yaml │ │ │ │ ├── validator.yaml │ │ │ │ └── web_profiler.yaml │ │ │ ├── preload.php │ │ │ ├── routes.yaml │ │ │ ├── routes │ │ │ │ ├── annotations.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── web_profiler.yaml │ │ │ └── services.yaml │ │ ├── migrations │ │ │ ├── .gitignore │ │ │ ├── Version20230506145938.php │ │ │ └── Version20230509185823.php │ │ ├── phpunit.xml.dist │ │ ├── public │ │ │ ├── images │ │ │ │ └── google.jpg │ │ │ └── index.php │ │ ├── src │ │ │ ├── Controller │ │ │ │ ├── .gitignore │ │ │ │ ├── ClassroomController.php │ │ │ │ ├── ClubController.php │ │ │ │ └── StudentController.php │ │ │ ├── Entity │ │ │ │ ├── .gitignore │ │ │ │ ├── Classroom.php │ │ │ │ └── Student.php │ │ │ ├── Form │ │ │ │ ├── ClassroomType.php │ │ │ │ └── StudentType.php │ │ │ ├── Kernel.php │ │ │ └── Repository │ │ │ │ ├── .gitignore │ │ │ │ ├── ClassroomRepository.php │ │ │ │ └── StudentRepository.php │ │ ├── symfony.lock │ │ ├── templates │ │ │ ├── base.html.twig │ │ │ ├── classroom │ │ │ │ ├── add.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ ├── show.html.twig │ │ │ │ └── update.html.twig │ │ │ ├── club │ │ │ │ └── index.html.twig │ │ │ └── student │ │ │ │ ├── add.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── show.html.twig │ │ ├── tests │ │ │ └── bootstrap.php │ │ └── translations │ │ │ └── .gitignore │ ├── style.css │ └── test.php ├── 2cinfo1 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── 2cinfo1.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221001163218.php │ │ ├── Version20221001164625.php │ │ ├── Version20221006180145.php │ │ ├── Version20221006180354.php │ │ ├── Version20221006180609.php │ │ ├── Version20221013143144.php │ │ ├── Version20221013181353.php │ │ └── Version20221014185824.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── cat.png │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClubController.php │ │ │ ├── HomeController.php │ │ │ ├── ProductController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Category.php │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ ├── Product.php │ │ │ └── Student.php │ │ ├── Form │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── CategoryRepository.php │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ ├── ProductRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── club │ │ │ ├── clubs.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── reservation.html.twig │ │ ├── home │ │ │ ├── index.html.twig │ │ │ └── service.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A29 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A29.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221005090356.php │ │ ├── Version20221005092136.php │ │ ├── Version20221019084827.php │ │ ├── Version20221019095917.php │ │ ├── Version20230203194025.php │ │ └── Version20230207101432.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── Front │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── img │ │ │ │ ├── about.jpg │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.png │ │ │ │ ├── hero-bg.jpg │ │ │ │ ├── portfolio │ │ │ │ │ ├── portfolio-1.jpg │ │ │ │ │ ├── portfolio-2.jpg │ │ │ │ │ ├── portfolio-3.jpg │ │ │ │ │ ├── portfolio-4.jpg │ │ │ │ │ ├── portfolio-5.jpg │ │ │ │ │ ├── portfolio-6.jpg │ │ │ │ │ ├── portfolio-7.jpg │ │ │ │ │ ├── portfolio-8.jpg │ │ │ │ │ ├── portfolio-9.jpg │ │ │ │ │ ├── portfolio-details-1.jpg │ │ │ │ │ ├── portfolio-details-2.jpg │ │ │ │ │ └── portfolio-details-3.jpg │ │ │ │ └── testimonials │ │ │ │ │ ├── testimonials-1.jpg │ │ │ │ │ ├── testimonials-2.jpg │ │ │ │ │ ├── testimonials-3.jpg │ │ │ │ │ ├── testimonials-4.jpg │ │ │ │ │ └── testimonials-5.jpg │ │ │ ├── js │ │ │ │ └── main.js │ │ │ └── libraries │ │ │ │ ├── aos │ │ │ │ ├── aos.css │ │ │ │ └── aos.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── boxicons │ │ │ │ ├── css │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── boxicons.css │ │ │ │ │ ├── boxicons.min.css │ │ │ │ │ └── transformations.css │ │ │ │ └── fonts │ │ │ │ │ ├── boxicons.eot │ │ │ │ │ ├── boxicons.svg │ │ │ │ │ ├── boxicons.ttf │ │ │ │ │ ├── boxicons.woff │ │ │ │ │ └── boxicons.woff2 │ │ │ │ ├── counterup │ │ │ │ └── counterup.min.js │ │ │ │ ├── icofont │ │ │ │ ├── fonts │ │ │ │ │ ├── icofont.woff │ │ │ │ │ └── icofont.woff2 │ │ │ │ └── icofont.min.css │ │ │ │ ├── isotope-layout │ │ │ │ ├── isotope.pkgd.js │ │ │ │ └── isotope.pkgd.min.js │ │ │ │ ├── jquery.easing │ │ │ │ └── jquery.easing.min.js │ │ │ │ ├── jquery │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ │ ├── owl.carousel │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── owl.carousel.css │ │ │ │ │ ├── owl.carousel.min.css │ │ │ │ │ ├── owl.theme.default.css │ │ │ │ │ ├── owl.theme.default.min.css │ │ │ │ │ ├── owl.theme.green.css │ │ │ │ │ ├── owl.theme.green.min.css │ │ │ │ │ └── owl.video.play.png │ │ │ │ ├── owl.carousel.js │ │ │ │ └── owl.carousel.min.js │ │ │ │ ├── php-email-form │ │ │ │ └── validate.js │ │ │ │ ├── venobox │ │ │ │ ├── venobox.css │ │ │ │ ├── venobox.js │ │ │ │ ├── venobox.min.css │ │ │ │ └── venobox.min.js │ │ │ │ └── waypoints │ │ │ │ └── jquery.waypoints.min.js │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClubController.php │ │ │ ├── ContactController.php │ │ │ ├── ProductController.php │ │ │ ├── StudentController.php │ │ │ └── UserController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ ├── Contact.php │ │ │ ├── Product.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClubType.php │ │ │ ├── ContactType.php │ │ │ ├── ProductType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ ├── ContactRepository.php │ │ │ ├── ProductRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── baseFront.html.twig │ │ ├── club │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listClub.html.twig │ │ ├── contact │ │ │ ├── add.html.twig │ │ │ └── index.html.twig │ │ ├── product │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── add2.html.twig │ │ │ ├── base.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── showClassroom.html.twig │ │ │ └── update.html.twig │ ├── tests │ │ ├── ProductTest.php │ │ ├── StudentUnitTest.php │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A30 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── 3A30.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221003144046.php │ │ ├── Version20221003145410.php │ │ ├── Version20221010125221.php │ │ ├── Version20221017125126.php │ │ └── Version20221017130304.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── octocat.png │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── CategoyController.php │ │ │ ├── ClubController.php │ │ │ ├── HomeController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Category.php │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ ├── Product.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── CategoryRepository.php │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ ├── ProductRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── categoy │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ ├── club │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listClub.html.twig │ │ ├── home │ │ │ └── index.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── listStudent.html.twig │ │ │ └── showclassroom.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A31 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A31.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221006134810.php │ │ ├── Version20221006135444.php │ │ ├── Version20221006144410.php │ │ ├── Version20221020130022.php │ │ └── Version20221027143424.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── octocat.gif │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── ClubController.php │ │ │ ├── ContactController.php │ │ │ ├── HomeController.php │ │ │ ├── PizzaController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClubType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── club │ │ │ ├── clubs.html.twig │ │ │ ├── detail.html.twig │ │ │ ├── formations.html.twig │ │ │ └── index.html.twig │ │ ├── home │ │ │ └── index.html.twig │ │ ├── pizza │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── showClassroom.html.twig │ │ │ └── update.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A32 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A29.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221003092051.php │ │ ├── Version20221003103008.php │ │ ├── Version20221003104419.php │ │ ├── Version20221010082001.php │ │ ├── Version20221017084555.php │ │ ├── Version20221017085300.php │ │ └── Version20221024103840.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── student.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── CategoyController.php │ │ │ ├── ClubController.php │ │ │ ├── ProductController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Category.php │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ ├── Product.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClubType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── CategoryRepository.php │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ ├── ProductRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── categoy │ │ │ └── index.html.twig │ │ ├── club │ │ │ ├── addClub.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listClub.html.twig │ │ │ └── updateClub.html.twig │ │ ├── product │ │ │ └── index.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── showClassroom.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 4SE4 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── 4SE4.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── README.md │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── sensio_framework_extra.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20221014131427.php │ │ ├── Version20221021132445.php │ │ └── Version20221021154804.php │ ├── phpunit.xml.dist │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── CarController.php │ │ │ ├── ClassroomController.php │ │ │ ├── ClubController.php │ │ │ ├── ProductController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Classroom.php │ │ │ ├── Club.php │ │ │ └── Student.php │ │ ├── Form │ │ │ ├── ClassroomType.php │ │ │ ├── SearchStudentType.php │ │ │ └── StudentType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── ClassroomRepository.php │ │ │ ├── ClubRepository.php │ │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── car │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ │ ├── classroom │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── show.html.twig │ │ │ └── update.html.twig │ │ ├── club │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── examen_correction │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── examen_correction.iml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20230515134053.php │ │ ├── Version20230515134834.php │ │ └── Version20230515180406.php │ ├── phpunit.xml.dist │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── JoueurController.php │ │ │ ├── ProduitController.php │ │ │ ├── PubliciteController.php │ │ │ └── VoteController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Joueur.php │ │ │ ├── Produit.php │ │ │ ├── Publicite.php │ │ │ └── Vote.php │ │ ├── Form │ │ │ ├── ProduitType.php │ │ │ ├── PubliciteType.php │ │ │ └── VoteType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── JoueurRepository.php │ │ │ ├── ProduitRepository.php │ │ │ ├── PubliciteRepository.php │ │ │ └── VoteRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── base.html.twig │ │ ├── joueur │ │ │ └── index.html.twig │ │ ├── produit │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ ├── publicite │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listPubliciteParProduit.html.twig │ │ └── vote │ │ │ ├── index.html.twig │ │ │ └── votesByJoueur.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore └── summerintership │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── examen_correction.iml │ ├── modules.xml │ ├── php.xml │ ├── phpunit.xml │ └── vcs.xml │ ├── bin │ ├── console │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ ├── bundles.php │ ├── packages │ │ ├── cache.yaml │ │ ├── debug.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── messenger.yaml │ │ ├── monolog.yaml │ │ ├── notifier.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── annotations.yaml │ │ ├── framework.yaml │ │ └── web_profiler.yaml │ └── services.yaml │ ├── migrations │ ├── .gitignore │ ├── Version20230712113127.php │ └── Version20230712120450.php │ ├── phpunit.xml.dist │ ├── public │ └── index.php │ ├── src │ ├── Controller │ │ ├── ProductController.php │ │ ├── StudentController.php │ │ └── TestController.php │ ├── Entity │ │ ├── Category.php │ │ ├── Product.php │ │ └── Student.php │ ├── Form │ │ └── StudentType.php │ ├── Kernel.php │ └── Repository │ │ ├── CategoryRepository.php │ │ ├── ProductRepository.php │ │ └── StudentRepository.php │ ├── symfony.lock │ ├── templates │ ├── base.html.twig │ ├── product │ │ ├── index.html.twig │ │ └── list.html.twig │ ├── student │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ └── list.html.twig │ └── test │ │ └── index.html.twig │ ├── tests │ └── bootstrap.php │ └── translations │ └── .gitignore ├── 23-24 ├── 3A42 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A42.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20231003135526.php │ │ ├── Version20231010143542.php │ │ ├── Version20231010145551.php │ │ └── Version20231017124843.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── index.php │ │ └── pictures │ │ │ └── symfonylive.jpg │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ ├── HomeController.php │ │ │ ├── PauseController.php │ │ │ └── ServiceController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ └── Project.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ ├── BookRepository.php │ │ │ └── ProjectRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── authors.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── show.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ ├── booksByAuthor.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ │ ├── pause │ │ │ ├── index.html.twig │ │ │ └── listStudent.html.twig │ │ └── service │ │ │ └── index.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A43 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A43.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20231005134009.php │ │ ├── Version20231012143801.php │ │ ├── Version20231012144045.php │ │ ├── Version20231012145953.php │ │ └── Version20231019143449.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── symfonylive.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ ├── HomeController.php │ │ │ ├── ProductController.php │ │ │ └── ServiceController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ └── Product.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ ├── BookRepository.php │ │ │ └── ProductRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listAuthors.html.twig │ │ │ └── show.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listBookByAuthors.html.twig │ │ ├── product │ │ │ ├── index.html.twig │ │ │ └── products.html.twig │ │ └── service │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A44 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A44.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ ├── symfony2.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20231002092854.php │ │ ├── Version20231009084543.php │ │ ├── Version20231009091216.php │ │ ├── Version20231016100922.php │ │ └── Version20231016101448.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── img │ │ │ └── symfonylive.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ ├── HomeController.php │ │ │ ├── ProductController.php │ │ │ └── ServiceController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ └── Product.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ ├── BookRepository.php │ │ │ └── ProductRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── authors.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── show.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── addBook.html.twig │ │ │ ├── booksByAuthor.html.twig │ │ │ ├── index.html.twig │ │ │ ├── listBook.html.twig │ │ │ ├── show.html.twig │ │ │ └── updateBook.html.twig │ │ └── service │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A45 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── 3A45.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── phpunit.xml │ │ └── vcs.xml │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── annotations.yaml │ │ │ ├── framework.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20231011091832.php │ │ ├── Version20231018084353.php │ │ └── Version20231018101446.php │ ├── phpunit.xml.dist │ ├── public │ │ ├── imgs │ │ │ └── symfonylive.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ ├── ContactController.php │ │ │ └── HomeController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ └── Book.php │ │ ├── Form │ │ │ └── BookType.php │ │ ├── Kernel.php │ │ └── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ └── BookRepository.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ └── listAuthors.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ └── index.html.twig │ │ └── contact │ │ │ ├── about.html.twig │ │ │ └── index.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore └── 4SE4 │ ├── .env │ ├── .env.test │ ├── .gitignore │ ├── .idea │ ├── $CACHE_FILE$ │ ├── .gitignore │ ├── 4SE4.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── php.xml │ ├── phpunit.xml │ └── vcs.xml │ ├── bin │ ├── console │ └── phpunit │ ├── composer.json │ ├── composer.lock │ ├── config │ ├── bundles.php │ ├── packages │ │ ├── cache.yaml │ │ ├── debug.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── messenger.yaml │ │ ├── monolog.yaml │ │ ├── notifier.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── annotations.yaml │ │ ├── framework.yaml │ │ └── web_profiler.yaml │ └── services.yaml │ ├── migrations │ ├── .gitignore │ ├── Version20231013135919.php │ ├── Version20231016135632.php │ ├── Version20231016144658.php │ ├── Version20231025114234.php │ └── Version20231025120450.php │ ├── phpunit.xml.dist │ ├── public │ ├── index.php │ └── pictures │ │ └── symfonylive.jpg │ ├── src │ ├── Controller │ │ ├── .gitignore │ │ ├── AuthorController.php │ │ ├── BookController.php │ │ └── ProductController.php │ ├── Entity │ │ ├── .gitignore │ │ ├── Author.php │ │ ├── Book.php │ │ └── Product.php │ ├── Form │ │ ├── BookType.php │ │ └── SearchBookType.php │ ├── Kernel.php │ └── Repository │ │ ├── .gitignore │ │ ├── AuthorRepository.php │ │ ├── BookRepository.php │ │ └── ProductRepository.php │ ├── symfony.lock │ ├── templates │ ├── author │ │ ├── index.html.twig │ │ ├── list.html.twig │ │ └── listAuthor.html.twig │ ├── base.html.twig │ ├── book │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ ├── list.html.twig │ │ ├── listBooksByAuthors.html.twig │ │ └── update.html.twig │ └── product │ │ └── index.html.twig │ ├── tests │ └── bootstrap.php │ └── translations │ └── .gitignore ├── 25-26 ├── 3A27 │ ├── .env │ ├── .env.dev │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── 3A27.iml │ │ ├── commandlinetools │ │ │ ├── Symfony_17_09_2025_09_26.xml │ │ │ └── schemas │ │ │ │ └── frameworkDescriptionVersion1.1.4.xsd │ │ ├── modules.xml │ │ ├── php.xml │ │ ├── symfony2.xml │ │ └── vcs.xml │ ├── assets │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── controllers.json │ │ ├── controllers │ │ │ └── hello_controller.js │ │ └── styles │ │ │ └── app.css │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── compose.override.yaml │ ├── compose.yaml │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── asset_mapper.yaml │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── framework.yaml │ │ │ ├── security.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── importmap.php │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20251001091114.php │ │ ├── Version20251017125007.php │ │ ├── Version20251017125446.php │ │ ├── Version20251017125817.php │ │ ├── Version20251017130509.php │ │ ├── Version20251017140145.php │ │ └── Version20251017140615.php │ ├── phpunit.dist.xml │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ └── Book.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ ├── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ └── BookRepository.php │ │ └── Service │ │ │ ├── AuthorMailerService.php │ │ │ ├── BookManagerService.php │ │ │ ├── HappyQuote.php │ │ │ └── TvaCalculator.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listAuthor.html.twig │ │ │ ├── show.html.twig │ │ │ └── update.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── product │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A28 │ ├── .env │ ├── .env.dev │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── 3A28.iml │ │ ├── commandlinetools │ │ │ ├── Symfony_16_09_2025_14_01.xml │ │ │ └── schemas │ │ │ │ └── frameworkDescriptionVersion1.1.4.xsd │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── assets │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── controllers.json │ │ ├── controllers │ │ │ └── hello_controller.js │ │ └── styles │ │ │ └── app.css │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── compose.override.yaml │ ├── compose.yaml │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── asset_mapper.yaml │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── framework.yaml │ │ │ ├── security.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── importmap.php │ ├── migrations │ │ ├── .gitignore │ │ ├── Version20251007134404.php │ │ ├── Version20251021130221.php │ │ ├── Version20251021131223.php │ │ └── Version20251021143733.php │ ├── phpunit.dist.xml │ ├── public │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ └── StudentController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ └── Book.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ ├── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ └── BookRepository.php │ │ └── Service │ │ │ ├── AuthorMailerService.php │ │ │ ├── BookManagerService.php │ │ │ ├── HappyQuote.php │ │ │ └── TvaCalculator.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listAuthors.html.twig │ │ │ ├── showAuthor.html.twig │ │ │ └── update.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── student │ │ │ ├── index.html.twig │ │ │ └── show.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore ├── 3A29 │ ├── .env │ ├── .env.dev │ ├── .env.test │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── 3A29.iml │ │ ├── commandlinetools │ │ │ ├── Symfony_15_09_2025_13_26.xml │ │ │ └── schemas │ │ │ │ └── frameworkDescriptionVersion1.1.4.xsd │ │ ├── modules.xml │ │ ├── php.xml │ │ └── vcs.xml │ ├── assets │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── controllers.json │ │ ├── controllers │ │ │ └── hello_controller.js │ │ └── styles │ │ │ └── app.css │ ├── bin │ │ ├── console │ │ └── phpunit │ ├── compose.override.yaml │ ├── compose.yaml │ ├── composer.json │ ├── composer.lock │ ├── config │ │ ├── bundles.php │ │ ├── packages │ │ │ ├── asset_mapper.yaml │ │ │ ├── cache.yaml │ │ │ ├── debug.yaml │ │ │ ├── doctrine.yaml │ │ │ ├── doctrine_migrations.yaml │ │ │ ├── framework.yaml │ │ │ ├── mailer.yaml │ │ │ ├── messenger.yaml │ │ │ ├── monolog.yaml │ │ │ ├── notifier.yaml │ │ │ ├── routing.yaml │ │ │ ├── security.yaml │ │ │ ├── translation.yaml │ │ │ ├── twig.yaml │ │ │ ├── validator.yaml │ │ │ └── web_profiler.yaml │ │ ├── preload.php │ │ ├── routes.yaml │ │ ├── routes │ │ │ ├── framework.yaml │ │ │ ├── security.yaml │ │ │ └── web_profiler.yaml │ │ └── services.yaml │ ├── importmap.php │ ├── migrations │ │ └── .gitignore │ ├── phpunit.dist.xml │ ├── public │ │ ├── images │ │ │ ├── Taha_Hussein.jpg │ │ │ ├── Victor-Hugo.jpg │ │ │ └── william-shakespeare.jpg │ │ └── index.php │ ├── src │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── AuthorController.php │ │ │ ├── BookController.php │ │ │ └── ProductController.php │ │ ├── Entity │ │ │ ├── .gitignore │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ └── Product.php │ │ ├── Form │ │ │ ├── AuthorType.php │ │ │ ├── BookType.php │ │ │ └── SearchBookType.php │ │ ├── Kernel.php │ │ ├── Repository │ │ │ ├── .gitignore │ │ │ ├── AuthorRepository.php │ │ │ ├── BookRepository.php │ │ │ └── ProductRepository.php │ │ └── Service │ │ │ ├── AuthorMailerService.php │ │ │ ├── BookManagerService.php │ │ │ ├── HappyQuote.php │ │ │ └── TvaCalculator.php │ ├── symfony.lock │ ├── templates │ │ ├── author │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listAuthors.html.twig │ │ │ ├── listAuthorsByMail.html.twig │ │ │ ├── show.html.twig │ │ │ └── update.html.twig │ │ ├── base.html.twig │ │ ├── book │ │ │ ├── add.html.twig │ │ │ ├── index.html.twig │ │ │ └── list.html.twig │ │ └── product │ │ │ ├── calcul.html.twig │ │ │ └── index.html.twig │ ├── tests │ │ └── bootstrap.php │ └── translations │ │ └── .gitignore └── 4SE2 │ ├── .env │ ├── .env.dev │ ├── .env.test │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── 4SE2.iml │ ├── commandlinetools │ │ ├── Symfony_07_10_2025_11_38.xml │ │ └── schemas │ │ │ └── frameworkDescriptionVersion1.1.4.xsd │ ├── modules.xml │ ├── php.xml │ └── vcs.xml │ ├── assets │ ├── app.js │ ├── bootstrap.js │ ├── controllers.json │ ├── controllers │ │ └── hello_controller.js │ ├── styles │ │ └── app.css │ └── vendor │ │ ├── @hotwired │ │ ├── stimulus │ │ │ └── stimulus.index.js │ │ └── turbo │ │ │ └── turbo.index.js │ │ └── installed.php │ ├── bin │ ├── console │ └── phpunit │ ├── compose.override.yaml │ ├── compose.yaml │ ├── composer.json │ ├── composer.lock │ ├── config │ ├── bundles.php │ ├── packages │ │ ├── asset_mapper.yaml │ │ ├── cache.yaml │ │ ├── debug.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── messenger.yaml │ │ ├── monolog.yaml │ │ ├── notifier.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── framework.yaml │ │ ├── security.yaml │ │ └── web_profiler.yaml │ └── services.yaml │ ├── importmap.php │ ├── migrations │ ├── .gitignore │ ├── Version20251021104338.php │ ├── Version20251111084122.php │ ├── Version20251111090457.php │ └── Version20251111092209.php │ ├── phpunit.dist.xml │ ├── public │ ├── css │ │ └── style.css │ ├── img │ │ ├── about.jpg │ │ ├── apple-touch-icon.png │ │ ├── favicon.png │ │ ├── hero-bg.jpg │ │ ├── portfolio │ │ │ ├── portfolio-1.jpg │ │ │ ├── portfolio-2.jpg │ │ │ ├── portfolio-3.jpg │ │ │ ├── portfolio-4.jpg │ │ │ ├── portfolio-5.jpg │ │ │ ├── portfolio-6.jpg │ │ │ ├── portfolio-7.jpg │ │ │ ├── portfolio-8.jpg │ │ │ ├── portfolio-9.jpg │ │ │ ├── portfolio-details-1.jpg │ │ │ ├── portfolio-details-2.jpg │ │ │ └── portfolio-details-3.jpg │ │ └── testimonials │ │ │ ├── testimonials-1.jpg │ │ │ ├── testimonials-2.jpg │ │ │ ├── testimonials-3.jpg │ │ │ ├── testimonials-4.jpg │ │ │ └── testimonials-5.jpg │ ├── index.php │ ├── js │ │ └── main.js │ └── libraries │ │ ├── aos │ │ ├── aos.css │ │ └── aos.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── boxicons │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── boxicons.css │ │ │ ├── boxicons.min.css │ │ │ └── transformations.css │ │ └── fonts │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.svg │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ ├── counterup │ │ └── counterup.min.js │ │ ├── icofont │ │ ├── fonts │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ └── icofont.min.css │ │ ├── isotope-layout │ │ ├── isotope.pkgd.js │ │ └── isotope.pkgd.min.js │ │ ├── jquery.easing │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── owl.carousel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ │ ├── php-email-form │ │ └── validate.js │ │ ├── venobox │ │ ├── venobox.css │ │ ├── venobox.js │ │ ├── venobox.min.css │ │ └── venobox.min.js │ │ └── waypoints │ │ └── jquery.waypoints.min.js │ ├── src │ ├── Controller │ │ ├── .gitignore │ │ ├── AuthorController.php │ │ ├── BookController.php │ │ └── HomeController.php │ ├── Entity │ │ ├── .gitignore │ │ ├── Author.php │ │ └── Book.php │ ├── Form │ │ ├── AuthorType.php │ │ └── BookType.php │ ├── Kernel.php │ └── Repository │ │ ├── .gitignore │ │ ├── AuthorRepository.php │ │ └── BookRepository.php │ ├── symfony.lock │ ├── templates │ ├── author │ │ ├── add.html.twig │ │ ├── index.html.twig │ │ ├── list.html.twig │ │ ├── listAuthors.html.twig │ │ ├── listBookByAuthors.html.twig │ │ ├── msg3.html.twig │ │ ├── show.html.twig │ │ └── update.html.twig │ ├── base.html.twig │ ├── book │ │ ├── add.html.twig │ │ └── index.html.twig │ └── home │ │ └── index.html.twig │ ├── tests │ └── bootstrap.php │ ├── translations │ └── .gitignore │ ├── var │ ├── cache │ │ └── dev │ │ │ ├── App_KernelDevDebugContainer.php │ │ │ ├── App_KernelDevDebugContainer.php.lock │ │ │ ├── App_KernelDevDebugContainer.php.meta │ │ │ ├── App_KernelDevDebugContainer.preload.php │ │ │ ├── App_KernelDevDebugContainer.xml │ │ │ ├── App_KernelDevDebugContainer.xml.meta │ │ │ ├── App_KernelDevDebugContainerCompiler.log │ │ │ ├── App_KernelDevDebugContainerDeprecations.log │ │ │ ├── Symfony │ │ │ └── Config │ │ │ │ ├── DebugConfig.php │ │ │ │ ├── Doctrine │ │ │ │ ├── Dbal │ │ │ │ │ ├── ConnectionConfig.php │ │ │ │ │ ├── ConnectionConfig │ │ │ │ │ │ ├── ReplicaConfig.php │ │ │ │ │ │ └── SlaveConfig.php │ │ │ │ │ └── TypeConfig.php │ │ │ │ ├── DbalConfig.php │ │ │ │ ├── Orm │ │ │ │ │ ├── ControllerResolverConfig.php │ │ │ │ │ ├── EntityManagerConfig.php │ │ │ │ │ └── EntityManagerConfig │ │ │ │ │ │ ├── DqlConfig.php │ │ │ │ │ │ ├── EntityListeners │ │ │ │ │ │ ├── EntityConfig.php │ │ │ │ │ │ └── EntityConfig │ │ │ │ │ │ │ ├── ListenerConfig.php │ │ │ │ │ │ │ └── ListenerConfig │ │ │ │ │ │ │ └── EventConfig.php │ │ │ │ │ │ ├── EntityListenersConfig.php │ │ │ │ │ │ ├── FilterConfig.php │ │ │ │ │ │ ├── MappingConfig.php │ │ │ │ │ │ ├── MetadataCacheDriverConfig.php │ │ │ │ │ │ ├── QueryCacheDriverConfig.php │ │ │ │ │ │ ├── ResultCacheDriverConfig.php │ │ │ │ │ │ ├── SecondLevelCache │ │ │ │ │ │ ├── LoggerConfig.php │ │ │ │ │ │ ├── RegionCacheDriverConfig.php │ │ │ │ │ │ ├── RegionConfig.php │ │ │ │ │ │ └── RegionConfig │ │ │ │ │ │ │ └── CacheDriverConfig.php │ │ │ │ │ │ └── SecondLevelCacheConfig.php │ │ │ │ └── OrmConfig.php │ │ │ │ ├── DoctrineConfig.php │ │ │ │ ├── DoctrineMigrations │ │ │ │ ├── Storage │ │ │ │ │ └── TableStorageConfig.php │ │ │ │ └── StorageConfig.php │ │ │ │ ├── DoctrineMigrationsConfig.php │ │ │ │ ├── Framework │ │ │ │ ├── AnnotationsConfig.php │ │ │ │ ├── AssetMapperConfig.php │ │ │ │ ├── Assets │ │ │ │ │ └── PackageConfig.php │ │ │ │ ├── AssetsConfig.php │ │ │ │ ├── Cache │ │ │ │ │ └── PoolConfig.php │ │ │ │ ├── CacheConfig.php │ │ │ │ ├── CsrfProtectionConfig.php │ │ │ │ ├── EsiConfig.php │ │ │ │ ├── ExceptionConfig.php │ │ │ │ ├── Form │ │ │ │ │ └── CsrfProtectionConfig.php │ │ │ │ ├── FormConfig.php │ │ │ │ ├── FragmentsConfig.php │ │ │ │ ├── HtmlSanitizer │ │ │ │ │ └── SanitizerConfig.php │ │ │ │ ├── HtmlSanitizerConfig.php │ │ │ │ ├── HttpCacheConfig.php │ │ │ │ ├── HttpClient │ │ │ │ │ ├── DefaultOptions │ │ │ │ │ │ ├── PeerFingerprintConfig.php │ │ │ │ │ │ ├── RetryFailed │ │ │ │ │ │ │ └── HttpCodeConfig.php │ │ │ │ │ │ └── RetryFailedConfig.php │ │ │ │ │ ├── DefaultOptionsConfig.php │ │ │ │ │ ├── ScopedClientConfig.php │ │ │ │ │ └── ScopedClientConfig │ │ │ │ │ │ ├── PeerFingerprintConfig.php │ │ │ │ │ │ ├── RetryFailed │ │ │ │ │ │ └── HttpCodeConfig.php │ │ │ │ │ │ └── RetryFailedConfig.php │ │ │ │ ├── HttpClientConfig.php │ │ │ │ ├── LockConfig.php │ │ │ │ ├── Mailer │ │ │ │ │ ├── EnvelopeConfig.php │ │ │ │ │ └── HeaderConfig.php │ │ │ │ ├── MailerConfig.php │ │ │ │ ├── Messenger │ │ │ │ │ ├── BusConfig.php │ │ │ │ │ ├── BusConfig │ │ │ │ │ │ ├── DefaultMiddlewareConfig.php │ │ │ │ │ │ └── MiddlewareConfig.php │ │ │ │ │ ├── RoutingConfig.php │ │ │ │ │ ├── Serializer │ │ │ │ │ │ └── SymfonySerializerConfig.php │ │ │ │ │ ├── SerializerConfig.php │ │ │ │ │ ├── TransportConfig.php │ │ │ │ │ └── TransportConfig │ │ │ │ │ │ └── RetryStrategyConfig.php │ │ │ │ ├── MessengerConfig.php │ │ │ │ ├── Notifier │ │ │ │ │ └── AdminRecipientConfig.php │ │ │ │ ├── NotifierConfig.php │ │ │ │ ├── PhpErrorsConfig.php │ │ │ │ ├── ProfilerConfig.php │ │ │ │ ├── PropertyAccessConfig.php │ │ │ │ ├── PropertyInfoConfig.php │ │ │ │ ├── RateLimiter │ │ │ │ │ ├── LimiterConfig.php │ │ │ │ │ └── LimiterConfig │ │ │ │ │ │ └── RateConfig.php │ │ │ │ ├── RateLimiterConfig.php │ │ │ │ ├── RemoteeventConfig.php │ │ │ │ ├── RequestConfig.php │ │ │ │ ├── RouterConfig.php │ │ │ │ ├── SchedulerConfig.php │ │ │ │ ├── SecretsConfig.php │ │ │ │ ├── SemaphoreConfig.php │ │ │ │ ├── Serializer │ │ │ │ │ └── MappingConfig.php │ │ │ │ ├── SerializerConfig.php │ │ │ │ ├── SessionConfig.php │ │ │ │ ├── SsiConfig.php │ │ │ │ ├── Translator │ │ │ │ │ ├── ProviderConfig.php │ │ │ │ │ └── PseudoLocalizationConfig.php │ │ │ │ ├── TranslatorConfig.php │ │ │ │ ├── UidConfig.php │ │ │ │ ├── Validation │ │ │ │ │ ├── AutoMappingConfig.php │ │ │ │ │ ├── MappingConfig.php │ │ │ │ │ └── NotCompromisedPasswordConfig.php │ │ │ │ ├── ValidationConfig.php │ │ │ │ ├── WebLinkConfig.php │ │ │ │ ├── Webhook │ │ │ │ │ └── RoutingConfig.php │ │ │ │ ├── WebhookConfig.php │ │ │ │ ├── Workflows │ │ │ │ │ ├── WorkflowsConfig.php │ │ │ │ │ └── WorkflowsConfig │ │ │ │ │ │ ├── AuditTrailConfig.php │ │ │ │ │ │ ├── MarkingStoreConfig.php │ │ │ │ │ │ ├── PlaceConfig.php │ │ │ │ │ │ └── TransitionConfig.php │ │ │ │ └── WorkflowsConfig.php │ │ │ │ ├── FrameworkConfig.php │ │ │ │ ├── MakerConfig.php │ │ │ │ ├── Monolog │ │ │ │ ├── HandlerConfig.php │ │ │ │ └── HandlerConfig │ │ │ │ │ ├── ChannelsConfig.php │ │ │ │ │ ├── ElasticsearchConfig.php │ │ │ │ │ ├── EmailPrototypeConfig.php │ │ │ │ │ ├── ExcludedHttpCodeConfig.php │ │ │ │ │ ├── MongoConfig.php │ │ │ │ │ ├── PredisConfig.php │ │ │ │ │ ├── ProcessPsr3MessagesConfig.php │ │ │ │ │ ├── PublisherConfig.php │ │ │ │ │ ├── RedisConfig.php │ │ │ │ │ └── VerbosityLevelsConfig.php │ │ │ │ ├── MonologConfig.php │ │ │ │ ├── Security │ │ │ │ ├── AccessControlConfig.php │ │ │ │ ├── AccessDecisionManagerConfig.php │ │ │ │ ├── FirewallConfig.php │ │ │ │ ├── FirewallConfig │ │ │ │ │ ├── AccessToken │ │ │ │ │ │ ├── TokenHandler │ │ │ │ │ │ │ ├── OidcConfig.php │ │ │ │ │ │ │ └── OidcUserInfoConfig.php │ │ │ │ │ │ └── TokenHandlerConfig.php │ │ │ │ │ ├── AccessTokenConfig.php │ │ │ │ │ ├── FormLoginConfig.php │ │ │ │ │ ├── FormLoginLdapConfig.php │ │ │ │ │ ├── HttpBasicConfig.php │ │ │ │ │ ├── HttpBasicLdapConfig.php │ │ │ │ │ ├── JsonLoginConfig.php │ │ │ │ │ ├── JsonLoginLdapConfig.php │ │ │ │ │ ├── LoginLinkConfig.php │ │ │ │ │ ├── LoginThrottlingConfig.php │ │ │ │ │ ├── Logout │ │ │ │ │ │ └── DeleteCookieConfig.php │ │ │ │ │ ├── LogoutConfig.php │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ ├── TokenProvider │ │ │ │ │ │ │ └── DoctrineConfig.php │ │ │ │ │ │ └── TokenProviderConfig.php │ │ │ │ │ ├── RememberMeConfig.php │ │ │ │ │ ├── RemoteUserConfig.php │ │ │ │ │ ├── SwitchUserConfig.php │ │ │ │ │ └── X509Config.php │ │ │ │ ├── PasswordHasherConfig.php │ │ │ │ ├── ProviderConfig.php │ │ │ │ └── ProviderConfig │ │ │ │ │ ├── ChainConfig.php │ │ │ │ │ ├── EntityConfig.php │ │ │ │ │ ├── LdapConfig.php │ │ │ │ │ ├── Memory │ │ │ │ │ └── UserConfig.php │ │ │ │ │ └── MemoryConfig.php │ │ │ │ ├── SecurityConfig.php │ │ │ │ ├── StimulusConfig.php │ │ │ │ ├── Turbo │ │ │ │ ├── Broadcast │ │ │ │ │ └── DoctrineOrmConfig.php │ │ │ │ └── BroadcastConfig.php │ │ │ │ ├── TurboConfig.php │ │ │ │ ├── Twig │ │ │ │ ├── DateConfig.php │ │ │ │ ├── GlobalConfig.php │ │ │ │ ├── MailerConfig.php │ │ │ │ └── NumberFormatConfig.php │ │ │ │ ├── TwigConfig.php │ │ │ │ ├── TwigExtra │ │ │ │ ├── CacheConfig.php │ │ │ │ ├── Commonmark │ │ │ │ │ ├── CommonmarkConfig.php │ │ │ │ │ ├── RendererConfig.php │ │ │ │ │ └── SlugNormalizerConfig.php │ │ │ │ ├── CommonmarkConfig.php │ │ │ │ ├── CssinlinerConfig.php │ │ │ │ ├── HtmlConfig.php │ │ │ │ ├── InkyConfig.php │ │ │ │ ├── IntlConfig.php │ │ │ │ ├── MarkdownConfig.php │ │ │ │ └── StringConfig.php │ │ │ │ ├── TwigExtraConfig.php │ │ │ │ └── WebProfilerConfig.php │ │ │ ├── annotations.map │ │ │ ├── asset_mapper │ │ │ ├── 37c747a7765c2af0cff4b5efd2871ea5.php │ │ │ ├── 37c747a7765c2af0cff4b5efd2871ea5.php.meta │ │ │ ├── 647b93e6014e431d79fb4750a7d27f93.php │ │ │ ├── 647b93e6014e431d79fb4750a7d27f93.php.meta │ │ │ ├── 94f78b5db09d70b0beec5024a8a424e8.php │ │ │ ├── 94f78b5db09d70b0beec5024a8a424e8.php.meta │ │ │ ├── be51e3cec98d31b86032f4d34d2811fd.php │ │ │ └── be51e3cec98d31b86032f4d34d2811fd.php.meta │ │ │ ├── serialization.php │ │ │ ├── translations │ │ │ ├── catalogue.af.FmQaY5o.php │ │ │ ├── catalogue.af.FmQaY5o.php.meta │ │ │ ├── catalogue.ar.FmQaY5o.php │ │ │ ├── catalogue.ar.FmQaY5o.php.meta │ │ │ ├── catalogue.az.FmQaY5o.php │ │ │ ├── catalogue.az.FmQaY5o.php.meta │ │ │ ├── catalogue.be.FmQaY5o.php │ │ │ ├── catalogue.be.FmQaY5o.php.meta │ │ │ ├── catalogue.bg.FmQaY5o.php │ │ │ ├── catalogue.bg.FmQaY5o.php.meta │ │ │ ├── catalogue.bs.FmQaY5o.php │ │ │ ├── catalogue.bs.FmQaY5o.php.meta │ │ │ ├── catalogue.ca.FmQaY5o.php │ │ │ ├── catalogue.ca.FmQaY5o.php.meta │ │ │ ├── catalogue.cs.FmQaY5o.php │ │ │ ├── catalogue.cs.FmQaY5o.php.meta │ │ │ ├── catalogue.cy.FmQaY5o.php │ │ │ ├── catalogue.cy.FmQaY5o.php.meta │ │ │ ├── catalogue.da.FmQaY5o.php │ │ │ ├── catalogue.da.FmQaY5o.php.meta │ │ │ ├── catalogue.de.FmQaY5o.php │ │ │ ├── catalogue.de.FmQaY5o.php.meta │ │ │ ├── catalogue.el.FmQaY5o.php │ │ │ ├── catalogue.el.FmQaY5o.php.meta │ │ │ ├── catalogue.en.FmQaY5o.php │ │ │ ├── catalogue.en.FmQaY5o.php.meta │ │ │ ├── catalogue.es.FmQaY5o.php │ │ │ ├── catalogue.es.FmQaY5o.php.meta │ │ │ ├── catalogue.et.FmQaY5o.php │ │ │ ├── catalogue.et.FmQaY5o.php.meta │ │ │ ├── catalogue.eu.FmQaY5o.php │ │ │ ├── catalogue.eu.FmQaY5o.php.meta │ │ │ ├── catalogue.fa.FmQaY5o.php │ │ │ ├── catalogue.fa.FmQaY5o.php.meta │ │ │ ├── catalogue.fi.FmQaY5o.php │ │ │ ├── catalogue.fi.FmQaY5o.php.meta │ │ │ ├── catalogue.fr.FmQaY5o.php │ │ │ ├── catalogue.fr.FmQaY5o.php.meta │ │ │ ├── catalogue.gl.FmQaY5o.php │ │ │ ├── catalogue.gl.FmQaY5o.php.meta │ │ │ ├── catalogue.he.FmQaY5o.php │ │ │ ├── catalogue.he.FmQaY5o.php.meta │ │ │ ├── catalogue.hr.FmQaY5o.php │ │ │ ├── catalogue.hr.FmQaY5o.php.meta │ │ │ ├── catalogue.hu.FmQaY5o.php │ │ │ ├── catalogue.hu.FmQaY5o.php.meta │ │ │ ├── catalogue.hy.FmQaY5o.php │ │ │ ├── catalogue.hy.FmQaY5o.php.meta │ │ │ ├── catalogue.id.FmQaY5o.php │ │ │ ├── catalogue.id.FmQaY5o.php.meta │ │ │ ├── catalogue.it.FmQaY5o.php │ │ │ ├── catalogue.it.FmQaY5o.php.meta │ │ │ ├── catalogue.ja.FmQaY5o.php │ │ │ ├── catalogue.ja.FmQaY5o.php.meta │ │ │ ├── catalogue.lb.FmQaY5o.php │ │ │ ├── catalogue.lb.FmQaY5o.php.meta │ │ │ ├── catalogue.lt.FmQaY5o.php │ │ │ ├── catalogue.lt.FmQaY5o.php.meta │ │ │ ├── catalogue.lv.FmQaY5o.php │ │ │ ├── catalogue.lv.FmQaY5o.php.meta │ │ │ ├── catalogue.mk.FmQaY5o.php │ │ │ ├── catalogue.mk.FmQaY5o.php.meta │ │ │ ├── catalogue.mn.FmQaY5o.php │ │ │ ├── catalogue.mn.FmQaY5o.php.meta │ │ │ ├── catalogue.my.FmQaY5o.php │ │ │ ├── catalogue.my.FmQaY5o.php.meta │ │ │ ├── catalogue.nb.FmQaY5o.php │ │ │ ├── catalogue.nb.FmQaY5o.php.meta │ │ │ ├── catalogue.nl.FmQaY5o.php │ │ │ ├── catalogue.nl.FmQaY5o.php.meta │ │ │ ├── catalogue.nn.FmQaY5o.php │ │ │ ├── catalogue.nn.FmQaY5o.php.meta │ │ │ ├── catalogue.no.FmQaY5o.php │ │ │ ├── catalogue.no.FmQaY5o.php.meta │ │ │ ├── catalogue.pl.FmQaY5o.php │ │ │ ├── catalogue.pl.FmQaY5o.php.meta │ │ │ ├── catalogue.pt.FmQaY5o.php │ │ │ ├── catalogue.pt.FmQaY5o.php.meta │ │ │ ├── catalogue.pt_BR.FmQaY5o.php │ │ │ ├── catalogue.pt_BR.FmQaY5o.php.meta │ │ │ ├── catalogue.ro.FmQaY5o.php │ │ │ ├── catalogue.ro.FmQaY5o.php.meta │ │ │ ├── catalogue.ru.FmQaY5o.php │ │ │ ├── catalogue.ru.FmQaY5o.php.meta │ │ │ ├── catalogue.sk.FmQaY5o.php │ │ │ ├── catalogue.sk.FmQaY5o.php.meta │ │ │ ├── catalogue.sl.FmQaY5o.php │ │ │ ├── catalogue.sl.FmQaY5o.php.meta │ │ │ ├── catalogue.sq.FmQaY5o.php │ │ │ ├── catalogue.sq.FmQaY5o.php.meta │ │ │ ├── catalogue.sr_Cyrl.FmQaY5o.php │ │ │ ├── catalogue.sr_Cyrl.FmQaY5o.php.meta │ │ │ ├── catalogue.sr_Latn.FmQaY5o.php │ │ │ ├── catalogue.sr_Latn.FmQaY5o.php.meta │ │ │ ├── catalogue.sv.FmQaY5o.php │ │ │ ├── catalogue.sv.FmQaY5o.php.meta │ │ │ ├── catalogue.th.FmQaY5o.php │ │ │ ├── catalogue.th.FmQaY5o.php.meta │ │ │ ├── catalogue.tl.FmQaY5o.php │ │ │ ├── catalogue.tl.FmQaY5o.php.meta │ │ │ ├── catalogue.tr.FmQaY5o.php │ │ │ ├── catalogue.tr.FmQaY5o.php.meta │ │ │ ├── catalogue.uk.FmQaY5o.php │ │ │ ├── catalogue.uk.FmQaY5o.php.meta │ │ │ ├── catalogue.ur.FmQaY5o.php │ │ │ ├── catalogue.ur.FmQaY5o.php.meta │ │ │ ├── catalogue.uz.FmQaY5o.php │ │ │ ├── catalogue.uz.FmQaY5o.php.meta │ │ │ ├── catalogue.vi.FmQaY5o.php │ │ │ ├── catalogue.vi.FmQaY5o.php.meta │ │ │ ├── catalogue.zh_CN.FmQaY5o.php │ │ │ ├── catalogue.zh_CN.FmQaY5o.php.meta │ │ │ ├── catalogue.zh_TW.FmQaY5o.php │ │ │ └── catalogue.zh_TW.FmQaY5o.php.meta │ │ │ ├── twig │ │ │ ├── 16 │ │ │ │ └── 1606a8f895a67c2809d30402cda07b96.php │ │ │ ├── 18 │ │ │ │ └── 181e7d13419897e19fe4102587fbe8ed.php │ │ │ ├── 24 │ │ │ │ └── 2498918220546266b6c2c8952de5c64d.php │ │ │ ├── 30 │ │ │ │ └── 3097fad31f9bd64a1a9b4cc6059e882d.php │ │ │ ├── 32 │ │ │ │ └── 3239c30d5520fbc5eaf8ed03ae7fe998.php │ │ │ ├── 34 │ │ │ │ └── 341c4d63c36c948170b44ecbfa1897f7.php │ │ │ ├── 42 │ │ │ │ └── 42fde00221adc1d71518c691548001ba.php │ │ │ ├── 43 │ │ │ │ └── 437082916c386214ecf72cd5dbfa5869.php │ │ │ ├── 44 │ │ │ │ └── 442c3ea38df41f61f2b592023f401bc5.php │ │ │ ├── 50 │ │ │ │ └── 50c6410b2b0e752ed67e0295a024e465.php │ │ │ ├── 60 │ │ │ │ └── 607ce483690c21a9bde8989b5207c78d.php │ │ │ ├── 63 │ │ │ │ └── 6369d9e43cc07e0ba5312070d0c60a4e.php │ │ │ ├── 64 │ │ │ │ └── 64c6ff62c8b243a7ce103d55773d65a7.php │ │ │ ├── 67 │ │ │ │ └── 6761a96540bd5d7443f827bb85d3f0bf.php │ │ │ ├── 69 │ │ │ │ └── 694aba074c2680bb24d0247df48713b6.php │ │ │ ├── 70 │ │ │ │ └── 70ac1cff01393fad63f7c73860f12eda.php │ │ │ ├── 71 │ │ │ │ └── 716b663d237f10aec467411c3eb46763.php │ │ │ ├── 72 │ │ │ │ └── 7269daa057343717e3a2d91bb468a1a7.php │ │ │ ├── 76 │ │ │ │ └── 7677e1cbe41c9b3cbfebb4049ac2c13c.php │ │ │ ├── 78 │ │ │ │ └── 78f56b8576bcf8801c0025c301823e5b.php │ │ │ ├── 86 │ │ │ │ ├── 86a1c9fe1772e9db9673c56255287ad1.php │ │ │ │ └── 86f881fc635f8a83672f62f281371f5f.php │ │ │ ├── 99 │ │ │ │ └── 996e1855fb220a32c08974ba062638e2.php │ │ │ ├── 08 │ │ │ │ └── 08ac2933ad2c036f100a3487d60f2f03.php │ │ │ ├── 09 │ │ │ │ └── 09e0fe29d8e6cf21e9997f59c6a84ab5.php │ │ │ ├── 1d │ │ │ │ └── 1dff183dd9cabe55e3818ba13ef6f86d.php │ │ │ ├── 2d │ │ │ │ └── 2d7f49d495303688f3d319a247d200d5.php │ │ │ ├── 2e │ │ │ │ └── 2eb6389a9ca6a5f162bee484873a9076.php │ │ │ ├── 3b │ │ │ │ └── 3b06945555a920e6b7d5405987ae9fe0.php │ │ │ ├── 4f │ │ │ │ ├── 4f0593c5706e0b491d728253939a2e49.php │ │ │ │ └── 4fe8a993ee7a42c2017c34292ef23f59.php │ │ │ ├── 5c │ │ │ │ └── 5c9e3459f92e8021db296cb1cfa1a248.php │ │ │ ├── 5f │ │ │ │ └── 5fa520fd1ce97790d3666f9d82dddf51.php │ │ │ ├── 6b │ │ │ │ ├── 6b718037fc9f783db335dcfa6bad2926.php │ │ │ │ └── 6bc13edbad183708b8eaa3197ec707eb.php │ │ │ ├── 7c │ │ │ │ └── 7c915f906ba1a4795c79b95dbba2afa9.php │ │ │ ├── 7e │ │ │ │ └── 7e3e46dac67aa6f30c5a8e7dccd7d8af.php │ │ │ ├── 8f │ │ │ │ └── 8fae906a9bdd5927a129738ac6f3e5d4.php │ │ │ ├── 9a │ │ │ │ └── 9aa3bce61e7ba5f085639e878ac234c1.php │ │ │ ├── a2 │ │ │ │ └── a2308b4edd0c5908005f5118588f57c8.php │ │ │ ├── a5 │ │ │ │ └── a545d9848b45530010a63d3afc617701.php │ │ │ ├── a8 │ │ │ │ ├── a87533fb6ac0208c78ad224ef6e8a4e6.php │ │ │ │ └── a896ad682ddb2dea1d524eb3cfd65a13.php │ │ │ ├── a9 │ │ │ │ └── a97bfd26639b8fada10565fa9f6485f9.php │ │ │ ├── ab │ │ │ │ └── ab94baeb6677277385be6ec1f91aca97.php │ │ │ ├── b2 │ │ │ │ └── b21485337595df1bf45b947e4ff964c6.php │ │ │ ├── b3 │ │ │ │ ├── b34e2eea3bfce9aa9fc31363e9e2e1e2.php │ │ │ │ ├── b398ff4c18b5ebceb70817f0ead1f3a7.php │ │ │ │ └── b3daf7d2153c0d1e69c73679a35668f6.php │ │ │ ├── b6 │ │ │ │ └── b66fda39cb8441207f67f65e50b0c791.php │ │ │ ├── bc │ │ │ │ └── bcb162f926d8353af01b3b3db60c7911.php │ │ │ ├── c0 │ │ │ │ └── c099ba0e17205b8570617e1ee95b10a8.php │ │ │ ├── c8 │ │ │ │ └── c86a9d6acfe74cf5cfdd7aaebf0568d5.php │ │ │ ├── cb │ │ │ │ └── cb5af26c91f7cc284b8365bbbd32fb04.php │ │ │ ├── cc │ │ │ │ └── ccb9b98f9e2c2187861e7e1f52ac00c5.php │ │ │ ├── ce │ │ │ │ ├── ce566bfa291e5c65bc2d074e0554c86f.php │ │ │ │ └── cefed27da523839b1ae6eccf4abee7d1.php │ │ │ ├── cf │ │ │ │ └── cf9f6c3cc50fa2c10b884d8b6f965750.php │ │ │ ├── d4 │ │ │ │ ├── d436f17011254beb2736bdab2ed8bb36.php │ │ │ │ └── d43e1bcc297efcf3fa3a1be1dd4e99c3.php │ │ │ ├── dd │ │ │ │ └── dd7bc18f6ee38cfc25c90b2ac9ea1d1b.php │ │ │ ├── ea │ │ │ │ └── ea22094073a97b3155de5347791bd796.php │ │ │ ├── f6 │ │ │ │ ├── f63ad5e6cabd203212dabdcdf57a0d19.php │ │ │ │ └── f6ed318daede9edc2ef7721a49f36bc4.php │ │ │ ├── fa │ │ │ │ └── fa36b0d3ca20c7d912d686981ed9c7f1.php │ │ │ ├── fb │ │ │ │ └── fb16937c6cd59355786b64341c1bf23d.php │ │ │ └── ff │ │ │ │ └── fffc5e4c5c10dd551ec72146cab2ad3e.php │ │ │ ├── url_generating_routes.php │ │ │ ├── url_generating_routes.php.meta │ │ │ ├── url_matching_routes.php │ │ │ ├── url_matching_routes.php.meta │ │ │ └── validation.php │ └── log │ │ └── dev.log │ └── vendor │ ├── autoload.php │ ├── autoload_runtime.php │ ├── bin │ ├── doctrine-dbal │ ├── doctrine-dbal.bat │ ├── doctrine-migrations │ ├── doctrine-migrations.bat │ ├── patch-type-declarations │ ├── patch-type-declarations.bat │ ├── php-parse │ ├── php-parse.bat │ ├── phpunit │ ├── phpunit.bat │ ├── sql-formatter │ ├── sql-formatter.bat │ ├── var-dump-server │ ├── var-dump-server.bat │ ├── yaml-lint │ └── yaml-lint.bat │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ ├── platform_check.php │ └── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Comparator.php │ │ ├── CompilingMatcher.php │ │ ├── Constraint │ │ ├── Bound.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── MatchAllConstraint.php │ │ ├── MatchNoneConstraint.php │ │ └── MultiConstraint.php │ │ ├── Interval.php │ │ ├── Intervals.php │ │ ├── Semver.php │ │ └── VersionParser.php │ ├── doctrine │ ├── collections │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── derived-collections.rst │ │ │ │ ├── expression-builder.rst │ │ │ │ ├── expressions.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lazy-collections.rst │ │ │ │ ├── serialization.rst │ │ │ │ └── sidebar.rst │ │ └── src │ │ │ ├── AbstractLazyCollection.php │ │ │ ├── ArrayCollection.php │ │ │ ├── Collection.php │ │ │ ├── Criteria.php │ │ │ ├── Expr │ │ │ ├── ClosureExpressionVisitor.php │ │ │ ├── Comparison.php │ │ │ ├── CompositeExpression.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionVisitor.php │ │ │ └── Value.php │ │ │ ├── ExpressionBuilder.php │ │ │ ├── Order.php │ │ │ ├── ReadableCollection.php │ │ │ └── Selectable.php │ ├── dbal │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ └── src │ │ │ ├── ArrayParameterType.php │ │ │ ├── ArrayParameters │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ │ ├── MissingNamedParameter.php │ │ │ │ └── MissingPositionalParameter.php │ │ │ ├── Cache │ │ │ ├── ArrayResult.php │ │ │ ├── CacheException.php │ │ │ └── QueryCacheProfile.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections │ │ │ └── PrimaryReadReplicaConnection.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── API │ │ │ │ ├── ExceptionConverter.php │ │ │ │ ├── IBMDB2 │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── MySQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── OCI │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── PostgreSQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── SQLSrv │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ └── SQLite │ │ │ │ │ ├── ExceptionConverter.php │ │ │ │ │ └── UserDefinedFunctions.php │ │ │ ├── AbstractDB2Driver.php │ │ │ ├── AbstractException.php │ │ │ ├── AbstractMySQLDriver.php │ │ │ ├── AbstractOracleDriver.php │ │ │ ├── AbstractOracleDriver │ │ │ │ └── EasyConnectString.php │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ ├── AbstractSQLServerDriver.php │ │ │ ├── AbstractSQLServerDriver │ │ │ │ └── Exception │ │ │ │ │ └── PortWithoutHost.php │ │ │ ├── AbstractSQLiteDriver.php │ │ │ ├── AbstractSQLiteDriver │ │ │ │ └── Middleware │ │ │ │ │ └── EnableForeignKeys.php │ │ │ ├── Connection.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ └── UnknownParameterType.php │ │ │ ├── FetchUtils.php │ │ │ ├── IBMDB2 │ │ │ │ ├── Connection.php │ │ │ │ ├── DataSourceName.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Middleware.php │ │ │ ├── Middleware │ │ │ │ ├── AbstractConnectionMiddleware.php │ │ │ │ ├── AbstractDriverMiddleware.php │ │ │ │ ├── AbstractResultMiddleware.php │ │ │ │ └── AbstractStatementMiddleware.php │ │ │ ├── Mysqli │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ ├── HostRequired.php │ │ │ │ │ ├── InvalidCharset.php │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ ├── NonStreamResourceUsedAsLargeObject.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Initializer.php │ │ │ │ ├── Initializer │ │ │ │ │ ├── Charset.php │ │ │ │ │ ├── Options.php │ │ │ │ │ └── Secure.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── OCI8 │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertPositionalToNamedPlaceholders.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ ├── ExecutionMode.php │ │ │ │ ├── Middleware │ │ │ │ │ └── InitializeSession.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── PDO │ │ │ │ ├── Connection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MySQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── OCI │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOConnect.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── ParameterTypeMap.php │ │ │ │ ├── PgSQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── Result.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── SQLite │ │ │ │ │ └── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PgSQL │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertParameters.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── UnexpectedValue.php │ │ │ │ │ └── UnknownParameter.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Result.php │ │ │ ├── SQLSrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ └── Error.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── SQLite3 │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── ServerInfoAwareConnection.php │ │ │ └── Statement.php │ │ │ ├── DriverManager.php │ │ │ ├── Event │ │ │ ├── ConnectionEventArgs.php │ │ │ ├── Listeners │ │ │ │ ├── OracleSessionInit.php │ │ │ │ ├── SQLSessionInit.php │ │ │ │ └── SQLiteSessionInit.php │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ ├── SchemaEventArgs.php │ │ │ ├── SchemaIndexDefinitionEventArgs.php │ │ │ ├── TransactionBeginEventArgs.php │ │ │ ├── TransactionCommitEventArgs.php │ │ │ ├── TransactionEventArgs.php │ │ │ └── TransactionRollBackEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionLost.php │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DatabaseDoesNotExist.php │ │ │ ├── DatabaseObjectExistsException.php │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ ├── DatabaseRequired.php │ │ │ ├── DeadlockException.php │ │ │ ├── DriverException.php │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFieldNameException.php │ │ │ ├── InvalidLockMode.php │ │ │ ├── LockWaitTimeoutException.php │ │ │ ├── MalformedDsnException.php │ │ │ ├── NoKeyValue.php │ │ │ ├── NonUniqueFieldNameException.php │ │ │ ├── NotNullConstraintViolationException.php │ │ │ ├── ReadOnlyException.php │ │ │ ├── RetryableException.php │ │ │ ├── SchemaDoesNotExist.php │ │ │ ├── ServerException.php │ │ │ ├── SyntaxErrorException.php │ │ │ ├── TableExistsException.php │ │ │ ├── TableNotFoundException.php │ │ │ ├── TransactionRolledBack.php │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── ExpandArrayParameters.php │ │ │ ├── FetchMode.php │ │ │ ├── Id │ │ │ ├── TableGenerator.php │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging │ │ │ ├── Connection.php │ │ │ ├── DebugStack.php │ │ │ ├── Driver.php │ │ │ ├── LoggerChain.php │ │ │ ├── Middleware.php │ │ │ ├── SQLLogger.php │ │ │ └── Statement.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms │ │ │ ├── AbstractMySQLPlatform.php │ │ │ ├── AbstractPlatform.php │ │ │ ├── DB2111Platform.php │ │ │ ├── DB2Platform.php │ │ │ ├── DateIntervalUnit.php │ │ │ ├── Keywords │ │ │ │ ├── DB2Keywords.php │ │ │ │ ├── KeywordList.php │ │ │ │ ├── MariaDBKeywords.php │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ ├── MariaDb117Keywords.php │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ ├── MySQL84Keywords.php │ │ │ │ ├── MySQLKeywords.php │ │ │ │ ├── OracleKeywords.php │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ └── SQLiteKeywords.php │ │ │ ├── MariaDBPlatform.php │ │ │ ├── MariaDb1010Platform.php │ │ │ ├── MariaDb1027Platform.php │ │ │ ├── MariaDb1043Platform.php │ │ │ ├── MariaDb1052Platform.php │ │ │ ├── MariaDb1060Platform.php │ │ │ ├── MariaDb110700Platform.php │ │ │ ├── MySQL │ │ │ │ ├── CollationMetadataProvider.php │ │ │ │ ├── CollationMetadataProvider │ │ │ │ │ ├── CachingCollationMetadataProvider.php │ │ │ │ │ └── ConnectionCollationMetadataProvider.php │ │ │ │ └── Comparator.php │ │ │ ├── MySQL57Platform.php │ │ │ ├── MySQL80Platform.php │ │ │ ├── MySQL84Platform.php │ │ │ ├── MySQLPlatform.php │ │ │ ├── OraclePlatform.php │ │ │ ├── PostgreSQL100Platform.php │ │ │ ├── PostgreSQL120Platform.php │ │ │ ├── PostgreSQL94Platform.php │ │ │ ├── PostgreSQLPlatform.php │ │ │ ├── SQLServer │ │ │ │ ├── Comparator.php │ │ │ │ └── SQL │ │ │ │ │ └── Builder │ │ │ │ │ └── SQLServerSelectSQLBuilder.php │ │ │ ├── SQLServer2012Platform.php │ │ │ ├── SQLServerPlatform.php │ │ │ ├── SQLite │ │ │ │ └── Comparator.php │ │ │ ├── SqlitePlatform.php │ │ │ └── TrimMode.php │ │ │ ├── Portability │ │ │ ├── Connection.php │ │ │ ├── Converter.php │ │ │ ├── Driver.php │ │ │ ├── Middleware.php │ │ │ ├── OptimizeFlags.php │ │ │ ├── Result.php │ │ │ └── Statement.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ ├── Expression │ │ │ │ ├── CompositeExpression.php │ │ │ │ └── ExpressionBuilder.php │ │ │ ├── ForUpdate.php │ │ │ ├── ForUpdate │ │ │ │ └── ConflictResolutionMode.php │ │ │ ├── Limit.php │ │ │ ├── QueryBuilder.php │ │ │ ├── QueryException.php │ │ │ └── SelectQuery.php │ │ │ ├── Result.php │ │ │ ├── SQL │ │ │ ├── Builder │ │ │ │ ├── CreateSchemaObjectsSQLBuilder.php │ │ │ │ ├── DefaultSelectSQLBuilder.php │ │ │ │ ├── DropSchemaObjectsSQLBuilder.php │ │ │ │ └── SelectSQLBuilder.php │ │ │ ├── Parser.php │ │ │ └── Parser │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ └── RegularExpressionError.php │ │ │ │ └── Visitor.php │ │ │ ├── Schema │ │ │ ├── AbstractAsset.php │ │ │ ├── AbstractSchemaManager.php │ │ │ ├── Column.php │ │ │ ├── ColumnDiff.php │ │ │ ├── Comparator.php │ │ │ ├── Constraint.php │ │ │ ├── DB2SchemaManager.php │ │ │ ├── DefaultSchemaManagerFactory.php │ │ │ ├── Exception │ │ │ │ ├── ColumnAlreadyExists.php │ │ │ │ ├── ColumnDoesNotExist.php │ │ │ │ ├── ForeignKeyDoesNotExist.php │ │ │ │ ├── IndexAlreadyExists.php │ │ │ │ ├── IndexDoesNotExist.php │ │ │ │ ├── IndexNameInvalid.php │ │ │ │ ├── InvalidTableName.php │ │ │ │ ├── NamedForeignKeyRequired.php │ │ │ │ ├── NamespaceAlreadyExists.php │ │ │ │ ├── SequenceAlreadyExists.php │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ ├── TableAlreadyExists.php │ │ │ │ ├── TableDoesNotExist.php │ │ │ │ ├── UniqueConstraintDoesNotExist.php │ │ │ │ └── UnknownColumnOption.php │ │ │ ├── ForeignKeyConstraint.php │ │ │ ├── Identifier.php │ │ │ ├── Index.php │ │ │ ├── LegacySchemaManagerFactory.php │ │ │ ├── MySQLSchemaManager.php │ │ │ ├── OracleSchemaManager.php │ │ │ ├── PostgreSQLSchemaManager.php │ │ │ ├── SQLServerSchemaManager.php │ │ │ ├── Schema.php │ │ │ ├── SchemaConfig.php │ │ │ ├── SchemaDiff.php │ │ │ ├── SchemaException.php │ │ │ ├── SchemaManagerFactory.php │ │ │ ├── Sequence.php │ │ │ ├── SqliteSchemaManager.php │ │ │ ├── Table.php │ │ │ ├── TableDiff.php │ │ │ ├── UniqueConstraint.php │ │ │ ├── View.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ └── Visitor.php │ │ │ ├── Statement.php │ │ │ ├── Tools │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── CommandCompatibility.php │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ ├── ConnectionProvider.php │ │ │ │ ├── ConnectionProvider │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ └── ConsoleRunner.php │ │ │ └── DsnParser.php │ │ │ ├── TransactionIsolationLevel.php │ │ │ ├── Types │ │ │ ├── ArrayType.php │ │ │ ├── AsciiStringType.php │ │ │ ├── BigIntType.php │ │ │ ├── BinaryType.php │ │ │ ├── BlobType.php │ │ │ ├── BooleanType.php │ │ │ ├── ConversionException.php │ │ │ ├── DateImmutableType.php │ │ │ ├── DateIntervalType.php │ │ │ ├── DateTimeImmutableType.php │ │ │ ├── DateTimeType.php │ │ │ ├── DateTimeTzImmutableType.php │ │ │ ├── DateTimeTzType.php │ │ │ ├── DateType.php │ │ │ ├── DecimalType.php │ │ │ ├── FloatType.php │ │ │ ├── GuidType.php │ │ │ ├── IntegerType.php │ │ │ ├── JsonType.php │ │ │ ├── ObjectType.php │ │ │ ├── PhpDateTimeMappingType.php │ │ │ ├── PhpIntegerMappingType.php │ │ │ ├── SimpleArrayType.php │ │ │ ├── SmallIntType.php │ │ │ ├── StringType.php │ │ │ ├── TextType.php │ │ │ ├── TimeImmutableType.php │ │ │ ├── TimeType.php │ │ │ ├── Type.php │ │ │ ├── TypeRegistry.php │ │ │ ├── Types.php │ │ │ ├── VarDateTimeImmutableType.php │ │ │ └── VarDateTimeType.php │ │ │ └── VersionAwarePlatformDriver.php │ ├── deprecations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Deprecation.php │ │ │ └── PHPUnit │ │ │ └── VerifyDeprecations.php │ ├── doctrine-bundle │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-2.10.md │ │ ├── UPGRADE-2.12.md │ │ ├── UPGRADE-2.13.md │ │ ├── UPGRADE-3.0.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── dbal.php │ │ │ ├── messenger.php │ │ │ ├── middlewares.php │ │ │ ├── orm.php │ │ │ └── schema │ │ │ │ └── doctrine-1.0.xsd │ │ ├── src │ │ │ ├── Attribute │ │ │ │ ├── AsDoctrineListener.php │ │ │ │ ├── AsEntityListener.php │ │ │ │ └── AsMiddleware.php │ │ │ ├── CacheWarmer │ │ │ │ └── DoctrineMetadataCacheWarmer.php │ │ │ ├── Command │ │ │ │ ├── CreateDatabaseDoctrineCommand.php │ │ │ │ ├── DoctrineCommand.php │ │ │ │ ├── DropDatabaseDoctrineCommand.php │ │ │ │ ├── ImportMappingDoctrineCommand.php │ │ │ │ └── Proxy │ │ │ │ │ ├── ClearMetadataCacheDoctrineCommand.php │ │ │ │ │ ├── ClearQueryCacheDoctrineCommand.php │ │ │ │ │ ├── ClearResultCacheDoctrineCommand.php │ │ │ │ │ ├── CollectionRegionDoctrineCommand.php │ │ │ │ │ ├── ConvertMappingDoctrineCommand.php │ │ │ │ │ ├── CreateSchemaDoctrineCommand.php │ │ │ │ │ ├── DoctrineCommandHelper.php │ │ │ │ │ ├── DropSchemaDoctrineCommand.php │ │ │ │ │ ├── EnsureProductionSettingsDoctrineCommand.php │ │ │ │ │ ├── EntityRegionCacheDoctrineCommand.php │ │ │ │ │ ├── InfoDoctrineCommand.php │ │ │ │ │ ├── OrmProxyCommand.php │ │ │ │ │ ├── QueryRegionCacheDoctrineCommand.php │ │ │ │ │ ├── RunDqlDoctrineCommand.php │ │ │ │ │ ├── RunSqlDoctrineCommand.php │ │ │ │ │ ├── UpdateSchemaDoctrineCommand.php │ │ │ │ │ └── ValidateSchemaCommand.php │ │ │ ├── ConnectionFactory.php │ │ │ ├── Controller │ │ │ │ └── ProfilerController.php │ │ │ ├── DataCollector │ │ │ │ └── DoctrineDataCollector.php │ │ │ ├── Dbal │ │ │ │ ├── BlacklistSchemaAssetFilter.php │ │ │ │ ├── ManagerRegistryAwareConnectionProvider.php │ │ │ │ ├── RegexSchemaAssetFilter.php │ │ │ │ └── SchemaAssetsFilterManager.php │ │ │ ├── DependencyInjection │ │ │ │ ├── Compiler │ │ │ │ │ ├── CacheCompatibilityPass.php │ │ │ │ │ ├── CacheSchemaSubscriberPass.php │ │ │ │ │ ├── DbalSchemaFilterPass.php │ │ │ │ │ ├── DoctrineOrmMappingsPass.php │ │ │ │ │ ├── EntityListenerPass.php │ │ │ │ │ ├── IdGeneratorPass.php │ │ │ │ │ ├── MiddlewaresPass.php │ │ │ │ │ ├── RemoveLoggingMiddlewarePass.php │ │ │ │ │ ├── RemoveProfilerControllerPass.php │ │ │ │ │ └── ServiceRepositoryCompilerPass.php │ │ │ │ ├── Configuration.php │ │ │ │ └── DoctrineExtension.php │ │ │ ├── DoctrineBundle.php │ │ │ ├── EventSubscriber │ │ │ │ └── EventSubscriberInterface.php │ │ │ ├── ManagerConfigurator.php │ │ │ ├── Mapping │ │ │ │ ├── ClassMetadataCollection.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── ContainerEntityListenerResolver.php │ │ │ │ ├── DisconnectedMetadataFactory.php │ │ │ │ ├── EntityListenerServiceResolver.php │ │ │ │ └── MappingDriver.php │ │ │ ├── Middleware │ │ │ │ ├── BacktraceDebugDataHolder.php │ │ │ │ ├── ConnectionNameAwareInterface.php │ │ │ │ ├── DebugMiddleware.php │ │ │ │ └── IdleConnectionMiddleware.php │ │ │ ├── Orm │ │ │ │ └── ManagerRegistryAwareEntityManagerProvider.php │ │ │ ├── Registry.php │ │ │ ├── Repository │ │ │ │ ├── ContainerRepositoryFactory.php │ │ │ │ ├── LazyServiceEntityRepository.php │ │ │ │ ├── RepositoryFactoryCompatibility.php │ │ │ │ ├── ServiceEntityRepository.php │ │ │ │ ├── ServiceEntityRepositoryInterface.php │ │ │ │ └── ServiceEntityRepositoryProxy.php │ │ │ └── Twig │ │ │ │ └── DoctrineExtension.php │ │ └── templates │ │ │ └── Collector │ │ │ ├── database.svg │ │ │ ├── db.html.twig │ │ │ ├── explain.html.twig │ │ │ └── icon.svg │ ├── doctrine-migrations-bundle │ │ ├── .symfony.bundle.yaml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── schema │ │ │ │ └── doctrine_migrations-3.0.xsd │ │ │ └── services.xml │ │ ├── src │ │ │ ├── Collector │ │ │ │ ├── MigrationsCollector.php │ │ │ │ └── MigrationsFlattener.php │ │ │ ├── DependencyInjection │ │ │ │ ├── CompilerPass │ │ │ │ │ └── ConfigureDependencyFactoryPass.php │ │ │ │ ├── Configuration.php │ │ │ │ └── DoctrineMigrationsExtension.php │ │ │ ├── DoctrineMigrationsBundle.php │ │ │ ├── EventListener │ │ │ │ └── SchemaFilterListener.php │ │ │ └── MigrationsFactory │ │ │ │ └── ContainerAwareMigrationFactory.php │ │ └── templates │ │ │ └── Collector │ │ │ ├── icon-v3.svg │ │ │ ├── icon.svg │ │ │ └── migrations.html.twig │ ├── event-manager │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── psalm-baseline.xml │ │ └── src │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ ├── inflector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ └── index.rst │ │ └── src │ │ │ ├── CachedWordInflector.php │ │ │ ├── GenericLanguageInflectorFactory.php │ │ │ ├── Inflector.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Language.php │ │ │ ├── LanguageInflectorFactory.php │ │ │ ├── NoopWordInflector.php │ │ │ ├── Rules │ │ │ ├── English │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Esperanto │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── French │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Italian │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── NorwegianBokmal │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Pattern.php │ │ │ ├── Patterns.php │ │ │ ├── Portuguese │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Ruleset.php │ │ │ ├── Spanish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ ├── Substitution.php │ │ │ ├── Substitutions.php │ │ │ ├── Transformation.php │ │ │ ├── Transformations.php │ │ │ ├── Turkish │ │ │ │ ├── Inflectible.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Rules.php │ │ │ │ └── Uninflected.php │ │ │ └── Word.php │ │ │ ├── RulesetInflector.php │ │ │ └── WordInflector.php │ ├── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ └── sidebar.rst │ │ ├── psalm.xml │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ ├── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractLexer.php │ │ │ └── Token.php │ ├── migrations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── bin │ │ │ ├── doctrine-migrations │ │ │ └── doctrine-migrations.php │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractMigration.php │ │ │ ├── Configuration │ │ │ ├── Configuration.php │ │ │ ├── Connection │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── ConnectionLoader.php │ │ │ │ ├── ConnectionRegistryConnection.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionNotSpecified.php │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ └── LoaderException.php │ │ │ │ └── ExistingConnection.php │ │ │ ├── EntityManager │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── EntityManagerLoader.php │ │ │ │ ├── Exception │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ └── LoaderException.php │ │ │ │ ├── ExistingEntityManager.php │ │ │ │ └── ManagerRegistryEntityManager.php │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── FileNotFound.php │ │ │ │ ├── FrozenConfiguration.php │ │ │ │ ├── InvalidLoader.php │ │ │ │ └── UnknownConfigurationValue.php │ │ │ └── Migration │ │ │ │ ├── ConfigurationArray.php │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── ConfigurationFileWithFallback.php │ │ │ │ ├── ConfigurationLoader.php │ │ │ │ ├── Exception │ │ │ │ ├── InvalidConfigurationFormat.php │ │ │ │ ├── InvalidConfigurationKey.php │ │ │ │ ├── JsonNotValid.php │ │ │ │ ├── MissingConfigurationFile.php │ │ │ │ ├── XmlNotValid.php │ │ │ │ ├── YamlNotAvailable.php │ │ │ │ └── YamlNotValid.php │ │ │ │ ├── ExistingConfiguration.php │ │ │ │ ├── FormattedFile.php │ │ │ │ ├── JsonFile.php │ │ │ │ ├── PhpFile.php │ │ │ │ ├── XML │ │ │ │ └── configuration.xsd │ │ │ │ ├── XmlFile.php │ │ │ │ └── YamlFile.php │ │ │ ├── DbalMigrator.php │ │ │ ├── DependencyFactory.php │ │ │ ├── Event │ │ │ ├── Listeners │ │ │ │ └── AutoCommitListener.php │ │ │ ├── MigrationsEventArgs.php │ │ │ └── MigrationsVersionEventArgs.php │ │ │ ├── EventDispatcher.php │ │ │ ├── Events.php │ │ │ ├── Exception │ │ │ ├── AbortMigration.php │ │ │ ├── AlreadyAtVersion.php │ │ │ ├── ControlException.php │ │ │ ├── DependencyException.php │ │ │ ├── DuplicateMigrationVersion.php │ │ │ ├── FrozenDependencies.php │ │ │ ├── FrozenMigration.php │ │ │ ├── IrreversibleMigration.php │ │ │ ├── MetadataStorageError.php │ │ │ ├── MigrationClassNotFound.php │ │ │ ├── MigrationConfigurationConflict.php │ │ │ ├── MigrationException.php │ │ │ ├── MigrationNotAvailable.php │ │ │ ├── MigrationNotExecuted.php │ │ │ ├── MissingDependency.php │ │ │ ├── NoMigrationsFoundWithCriteria.php │ │ │ ├── NoMigrationsToExecute.php │ │ │ ├── NoTablesFound.php │ │ │ ├── PlanAlreadyExecuted.php │ │ │ ├── RollupFailed.php │ │ │ ├── SkipMigration.php │ │ │ └── UnknownMigrationVersion.php │ │ │ ├── FileQueryWriter.php │ │ │ ├── FilesystemMigrationsRepository.php │ │ │ ├── Finder │ │ │ ├── Exception │ │ │ │ ├── FinderException.php │ │ │ │ ├── InvalidDirectory.php │ │ │ │ └── NameIsReserved.php │ │ │ ├── Finder.php │ │ │ ├── GlobFinder.php │ │ │ ├── MigrationFinder.php │ │ │ └── RecursiveRegexFinder.php │ │ │ ├── Generator │ │ │ ├── ClassNameGenerator.php │ │ │ ├── ConcatenationFileBuilder.php │ │ │ ├── DiffGenerator.php │ │ │ ├── Exception │ │ │ │ ├── GeneratorException.php │ │ │ │ ├── InvalidTemplateSpecified.php │ │ │ │ └── NoChangesDetected.php │ │ │ ├── FileBuilder.php │ │ │ ├── Generator.php │ │ │ └── SqlGenerator.php │ │ │ ├── InlineParameterFormatter.php │ │ │ ├── Metadata │ │ │ ├── AvailableMigration.php │ │ │ ├── AvailableMigrationsList.php │ │ │ ├── AvailableMigrationsSet.php │ │ │ ├── ExecutedMigration.php │ │ │ ├── ExecutedMigrationsList.php │ │ │ ├── MigrationPlan.php │ │ │ ├── MigrationPlanList.php │ │ │ └── Storage │ │ │ │ ├── MetadataStorage.php │ │ │ │ ├── MetadataStorageConfiguration.php │ │ │ │ ├── TableMetadataStorage.php │ │ │ │ └── TableMetadataStorageConfiguration.php │ │ │ ├── MigrationsRepository.php │ │ │ ├── Migrator.php │ │ │ ├── MigratorConfiguration.php │ │ │ ├── ParameterFormatter.php │ │ │ ├── Provider │ │ │ ├── DBALSchemaDiffProvider.php │ │ │ ├── EmptySchemaProvider.php │ │ │ ├── Exception │ │ │ │ ├── NoMappingFound.php │ │ │ │ └── ProviderException.php │ │ │ ├── LazySchema.php │ │ │ ├── LazySchemaDiffProvider.php │ │ │ ├── OrmSchemaProvider.php │ │ │ ├── SchemaDiffProvider.php │ │ │ ├── SchemaProvider.php │ │ │ └── StubSchemaProvider.php │ │ │ ├── Query │ │ │ ├── Exception │ │ │ │ └── InvalidArguments.php │ │ │ └── Query.php │ │ │ ├── QueryWriter.php │ │ │ ├── Rollup.php │ │ │ ├── SchemaDumper.php │ │ │ ├── Tools │ │ │ ├── BooleanStringFormatter.php │ │ │ ├── BytesFormatter.php │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── CurrentCommand.php │ │ │ │ │ ├── DiffCommand.php │ │ │ │ │ ├── DoctrineCommand.php │ │ │ │ │ ├── DumpSchemaCommand.php │ │ │ │ │ ├── ExecuteCommand.php │ │ │ │ │ ├── GenerateCommand.php │ │ │ │ │ ├── LatestCommand.php │ │ │ │ │ ├── ListCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── RollupCommand.php │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ ├── SyncMetadataCommand.php │ │ │ │ │ ├── UpToDateCommand.php │ │ │ │ │ └── VersionCommand.php │ │ │ │ ├── ConsoleInputMigratorConfigurationFactory.php │ │ │ │ ├── ConsoleRunner.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConsoleException.php │ │ │ │ │ ├── DependenciesNotSatisfied.php │ │ │ │ │ ├── DirectoryDoesNotExist.php │ │ │ │ │ ├── FileTypeNotSupported.php │ │ │ │ │ ├── InvalidOptionUsage.php │ │ │ │ │ ├── SchemaDumpRequiresNoMigrations.php │ │ │ │ │ ├── VersionAlreadyExists.php │ │ │ │ │ └── VersionDoesNotExist.php │ │ │ │ ├── Helper │ │ │ │ │ ├── ConfigurationHelper.php │ │ │ │ │ ├── MigrationDirectoryHelper.php │ │ │ │ │ └── MigrationStatusInfosHelper.php │ │ │ │ ├── InvalidAllOrNothingConfiguration.php │ │ │ │ └── MigratorConfigurationFactory.php │ │ │ └── TransactionHelper.php │ │ │ └── Version │ │ │ ├── AliasResolver.php │ │ │ ├── AlphabeticalComparator.php │ │ │ ├── Comparator.php │ │ │ ├── CurrentMigrationStatusCalculator.php │ │ │ ├── DbalExecutor.php │ │ │ ├── DbalMigrationFactory.php │ │ │ ├── DefaultAliasResolver.php │ │ │ ├── Direction.php │ │ │ ├── ExecutionResult.php │ │ │ ├── Executor.php │ │ │ ├── MigrationFactory.php │ │ │ ├── MigrationPlanCalculator.php │ │ │ ├── MigrationStatusCalculator.php │ │ │ ├── SortedMigrationPlanCalculator.php │ │ │ ├── State.php │ │ │ └── Version.php │ ├── orm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── doctrine-mapping.xsd │ │ ├── phpstan-dbal3.neon │ │ └── src │ │ │ ├── AbstractQuery.php │ │ │ ├── Cache.php │ │ │ ├── Cache │ │ │ ├── AssociationCacheEntry.php │ │ │ ├── CacheConfiguration.php │ │ │ ├── CacheEntry.php │ │ │ ├── CacheException.php │ │ │ ├── CacheFactory.php │ │ │ ├── CacheKey.php │ │ │ ├── CollectionCacheEntry.php │ │ │ ├── CollectionCacheKey.php │ │ │ ├── CollectionHydrator.php │ │ │ ├── ConcurrentRegion.php │ │ │ ├── DefaultCache.php │ │ │ ├── DefaultCacheFactory.php │ │ │ ├── DefaultCollectionHydrator.php │ │ │ ├── DefaultEntityHydrator.php │ │ │ ├── DefaultQueryCache.php │ │ │ ├── EntityCacheEntry.php │ │ │ ├── EntityCacheKey.php │ │ │ ├── EntityHydrator.php │ │ │ ├── Exception │ │ │ │ ├── CacheException.php │ │ │ │ ├── CannotUpdateReadOnlyCollection.php │ │ │ │ ├── CannotUpdateReadOnlyEntity.php │ │ │ │ ├── FeatureNotImplemented.php │ │ │ │ ├── NonCacheableEntity.php │ │ │ │ └── NonCacheableEntityAssociation.php │ │ │ ├── Lock.php │ │ │ ├── LockException.php │ │ │ ├── Logging │ │ │ │ ├── CacheLogger.php │ │ │ │ ├── CacheLoggerChain.php │ │ │ │ └── StatisticsCacheLogger.php │ │ │ ├── Persister │ │ │ │ ├── CachedPersister.php │ │ │ │ ├── Collection │ │ │ │ │ ├── AbstractCollectionPersister.php │ │ │ │ │ ├── CachedCollectionPersister.php │ │ │ │ │ ├── NonStrictReadWriteCachedCollectionPersister.php │ │ │ │ │ ├── ReadOnlyCachedCollectionPersister.php │ │ │ │ │ └── ReadWriteCachedCollectionPersister.php │ │ │ │ └── Entity │ │ │ │ │ ├── AbstractEntityPersister.php │ │ │ │ │ ├── CachedEntityPersister.php │ │ │ │ │ ├── NonStrictReadWriteCachedEntityPersister.php │ │ │ │ │ ├── ReadOnlyCachedEntityPersister.php │ │ │ │ │ └── ReadWriteCachedEntityPersister.php │ │ │ ├── QueryCache.php │ │ │ ├── QueryCacheEntry.php │ │ │ ├── QueryCacheKey.php │ │ │ ├── QueryCacheValidator.php │ │ │ ├── Region.php │ │ │ ├── Region │ │ │ │ ├── DefaultRegion.php │ │ │ │ ├── FileLockRegion.php │ │ │ │ └── UpdateTimestampCache.php │ │ │ ├── RegionsConfiguration.php │ │ │ ├── TimestampCacheEntry.php │ │ │ ├── TimestampCacheKey.php │ │ │ ├── TimestampQueryCacheValidator.php │ │ │ └── TimestampRegion.php │ │ │ ├── Configuration.php │ │ │ ├── Decorator │ │ │ └── EntityManagerDecorator.php │ │ │ ├── EntityManager.php │ │ │ ├── EntityManagerInterface.php │ │ │ ├── EntityNotFoundException.php │ │ │ ├── EntityRepository.php │ │ │ ├── Event │ │ │ ├── ListenersInvoker.php │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ ├── OnClassMetadataNotFoundEventArgs.php │ │ │ ├── OnClearEventArgs.php │ │ │ ├── OnFlushEventArgs.php │ │ │ ├── PostFlushEventArgs.php │ │ │ ├── PostLoadEventArgs.php │ │ │ ├── PostPersistEventArgs.php │ │ │ ├── PostRemoveEventArgs.php │ │ │ ├── PostUpdateEventArgs.php │ │ │ ├── PreFlushEventArgs.php │ │ │ ├── PrePersistEventArgs.php │ │ │ ├── PreRemoveEventArgs.php │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── DuplicateFieldException.php │ │ │ ├── EntityIdentityCollisionException.php │ │ │ ├── EntityManagerClosed.php │ │ │ ├── EntityMissingAssignedId.php │ │ │ ├── InvalidEntityRepository.php │ │ │ ├── InvalidHydrationMode.php │ │ │ ├── ManagerException.php │ │ │ ├── MissingIdentifierField.php │ │ │ ├── MissingMappingDriverImplementation.php │ │ │ ├── MultipleSelectorsFoundException.php │ │ │ ├── NoMatchingPropertyException.php │ │ │ ├── NotSupported.php │ │ │ ├── ORMException.php │ │ │ ├── PersisterException.php │ │ │ ├── RepositoryException.php │ │ │ ├── SchemaToolException.php │ │ │ ├── UnexpectedAssociationValue.php │ │ │ └── UnrecognizedIdentifierFields.php │ │ │ ├── Id │ │ │ ├── AbstractIdGenerator.php │ │ │ ├── AssignedGenerator.php │ │ │ ├── BigIntegerIdentityGenerator.php │ │ │ ├── IdentityGenerator.php │ │ │ └── SequenceGenerator.php │ │ │ ├── Internal │ │ │ ├── Hydration │ │ │ │ ├── AbstractHydrator.php │ │ │ │ ├── ArrayHydrator.php │ │ │ │ ├── HydrationException.php │ │ │ │ ├── ObjectHydrator.php │ │ │ │ ├── ScalarColumnHydrator.php │ │ │ │ ├── ScalarHydrator.php │ │ │ │ ├── SimpleObjectHydrator.php │ │ │ │ └── SingleScalarHydrator.php │ │ │ ├── HydrationCompleteHandler.php │ │ │ ├── NoUnknownNamedArguments.php │ │ │ ├── SQLResultCasing.php │ │ │ ├── StronglyConnectedComponents.php │ │ │ ├── TopologicalSort.php │ │ │ ├── TopologicalSort │ │ │ │ └── CycleDetectedException.php │ │ │ └── UnitOfWork │ │ │ │ └── InsertBatch.php │ │ │ ├── LazyCriteriaCollection.php │ │ │ ├── Mapping │ │ │ ├── AnsiQuoteStrategy.php │ │ │ ├── ArrayAccessImplementation.php │ │ │ ├── AssociationMapping.php │ │ │ ├── AssociationOverride.php │ │ │ ├── AssociationOverrides.php │ │ │ ├── AttributeOverride.php │ │ │ ├── AttributeOverrides.php │ │ │ ├── Builder │ │ │ │ ├── AssociationBuilder.php │ │ │ │ ├── ClassMetadataBuilder.php │ │ │ │ ├── EmbeddedBuilder.php │ │ │ │ ├── EntityListenerBuilder.php │ │ │ │ ├── FieldBuilder.php │ │ │ │ ├── ManyToManyAssociationBuilder.php │ │ │ │ └── OneToManyAssociationBuilder.php │ │ │ ├── Cache.php │ │ │ ├── ChainTypedFieldMapper.php │ │ │ ├── ChangeTrackingPolicy.php │ │ │ ├── ClassMetadata.php │ │ │ ├── ClassMetadataFactory.php │ │ │ ├── Column.php │ │ │ ├── CustomIdGenerator.php │ │ │ ├── DefaultEntityListenerResolver.php │ │ │ ├── DefaultNamingStrategy.php │ │ │ ├── DefaultQuoteStrategy.php │ │ │ ├── DefaultTypedFieldMapper.php │ │ │ ├── DiscriminatorColumn.php │ │ │ ├── DiscriminatorColumnMapping.php │ │ │ ├── DiscriminatorMap.php │ │ │ ├── Driver │ │ │ │ ├── AttributeDriver.php │ │ │ │ ├── AttributeReader.php │ │ │ │ ├── DatabaseDriver.php │ │ │ │ ├── LoadMappingFileImplementation.php │ │ │ │ ├── ReflectionBasedDriver.php │ │ │ │ ├── RepeatableAttributeCollection.php │ │ │ │ ├── SimplifiedXmlDriver.php │ │ │ │ └── XmlDriver.php │ │ │ ├── Embeddable.php │ │ │ ├── Embedded.php │ │ │ ├── EmbeddedClassMapping.php │ │ │ ├── Entity.php │ │ │ ├── EntityListenerResolver.php │ │ │ ├── EntityListeners.php │ │ │ ├── Exception │ │ │ │ ├── InvalidCustomGenerator.php │ │ │ │ └── UnknownGeneratorType.php │ │ │ ├── FieldMapping.php │ │ │ ├── GeneratedValue.php │ │ │ ├── GetReflectionClassImplementation.php │ │ │ ├── HasLifecycleCallbacks.php │ │ │ ├── Id.php │ │ │ ├── Index.php │ │ │ ├── InheritanceType.php │ │ │ ├── InverseJoinColumn.php │ │ │ ├── InverseSideMapping.php │ │ │ ├── JoinColumn.php │ │ │ ├── JoinColumnMapping.php │ │ │ ├── JoinColumnProperties.php │ │ │ ├── JoinColumns.php │ │ │ ├── JoinTable.php │ │ │ ├── JoinTableMapping.php │ │ │ ├── LegacyReflectionFields.php │ │ │ ├── ManyToMany.php │ │ │ ├── ManyToManyAssociationMapping.php │ │ │ ├── ManyToManyInverseSideMapping.php │ │ │ ├── ManyToManyOwningSideMapping.php │ │ │ ├── ManyToOne.php │ │ │ ├── ManyToOneAssociationMapping.php │ │ │ ├── MappedSuperclass.php │ │ │ ├── MappingAttribute.php │ │ │ ├── MappingException.php │ │ │ ├── NamingStrategy.php │ │ │ ├── OneToMany.php │ │ │ ├── OneToManyAssociationMapping.php │ │ │ ├── OneToOne.php │ │ │ ├── OneToOneAssociationMapping.php │ │ │ ├── OneToOneInverseSideMapping.php │ │ │ ├── OneToOneOwningSideMapping.php │ │ │ ├── OrderBy.php │ │ │ ├── OwningSideMapping.php │ │ │ ├── PostLoad.php │ │ │ ├── PostPersist.php │ │ │ ├── PostRemove.php │ │ │ ├── PostUpdate.php │ │ │ ├── PreFlush.php │ │ │ ├── PrePersist.php │ │ │ ├── PreRemove.php │ │ │ ├── PreUpdate.php │ │ │ ├── PropertyAccessors │ │ │ │ ├── EmbeddablePropertyAccessor.php │ │ │ │ ├── EnumPropertyAccessor.php │ │ │ │ ├── ObjectCastPropertyAccessor.php │ │ │ │ ├── PropertyAccessor.php │ │ │ │ ├── PropertyAccessorFactory.php │ │ │ │ ├── RawValuePropertyAccessor.php │ │ │ │ ├── ReadonlyAccessor.php │ │ │ │ └── TypedNoDefaultPropertyAccessor.php │ │ │ ├── QuoteStrategy.php │ │ │ ├── ReflectionEmbeddedProperty.php │ │ │ ├── ReflectionEnumProperty.php │ │ │ ├── ReflectionReadonlyProperty.php │ │ │ ├── SequenceGenerator.php │ │ │ ├── Table.php │ │ │ ├── ToManyAssociationMapping.php │ │ │ ├── ToManyAssociationMappingImplementation.php │ │ │ ├── ToManyInverseSideMapping.php │ │ │ ├── ToManyOwningSideMapping.php │ │ │ ├── ToOneAssociationMapping.php │ │ │ ├── ToOneInverseSideMapping.php │ │ │ ├── ToOneOwningSideMapping.php │ │ │ ├── TypedFieldMapper.php │ │ │ ├── UnderscoreNamingStrategy.php │ │ │ ├── UniqueConstraint.php │ │ │ └── Version.php │ │ │ ├── NativeQuery.php │ │ │ ├── NoResultException.php │ │ │ ├── NonUniqueResultException.php │ │ │ ├── ORMInvalidArgumentException.php │ │ │ ├── ORMSetup.php │ │ │ ├── OptimisticLockException.php │ │ │ ├── PersistentCollection.php │ │ │ ├── Persisters │ │ │ ├── Collection │ │ │ │ ├── AbstractCollectionPersister.php │ │ │ │ ├── CollectionPersister.php │ │ │ │ ├── ManyToManyPersister.php │ │ │ │ └── OneToManyPersister.php │ │ │ ├── Entity │ │ │ │ ├── AbstractEntityInheritancePersister.php │ │ │ │ ├── BasicEntityPersister.php │ │ │ │ ├── CachedPersisterContext.php │ │ │ │ ├── EntityPersister.php │ │ │ │ ├── JoinedSubclassPersister.php │ │ │ │ └── SingleTablePersister.php │ │ │ ├── Exception │ │ │ │ ├── CantUseInOperatorOnCompositeKeys.php │ │ │ │ ├── InvalidOrientation.php │ │ │ │ └── UnrecognizedField.php │ │ │ ├── MatchingAssociationFieldRequiresObject.php │ │ │ ├── PersisterException.php │ │ │ ├── SqlExpressionVisitor.php │ │ │ └── SqlValueVisitor.php │ │ │ ├── PessimisticLockException.php │ │ │ ├── Proxy │ │ │ ├── Autoloader.php │ │ │ ├── DefaultProxyClassNameResolver.php │ │ │ ├── InternalProxy.php │ │ │ ├── NotAProxyClass.php │ │ │ └── ProxyFactory.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ ├── AST │ │ │ │ ├── ASTException.php │ │ │ │ ├── AggregateExpression.php │ │ │ │ ├── ArithmeticExpression.php │ │ │ │ ├── ArithmeticFactor.php │ │ │ │ ├── ArithmeticTerm.php │ │ │ │ ├── BetweenExpression.php │ │ │ │ ├── CoalesceExpression.php │ │ │ │ ├── CollectionMemberExpression.php │ │ │ │ ├── ComparisonExpression.php │ │ │ │ ├── ConditionalExpression.php │ │ │ │ ├── ConditionalFactor.php │ │ │ │ ├── ConditionalPrimary.php │ │ │ │ ├── ConditionalTerm.php │ │ │ │ ├── DeleteClause.php │ │ │ │ ├── DeleteStatement.php │ │ │ │ ├── EmptyCollectionComparisonExpression.php │ │ │ │ ├── EntityAsDtoArgumentExpression.php │ │ │ │ ├── ExistsExpression.php │ │ │ │ ├── FromClause.php │ │ │ │ ├── Functions │ │ │ │ │ ├── AbsFunction.php │ │ │ │ │ ├── AvgFunction.php │ │ │ │ │ ├── BitAndFunction.php │ │ │ │ │ ├── BitOrFunction.php │ │ │ │ │ ├── ConcatFunction.php │ │ │ │ │ ├── CountFunction.php │ │ │ │ │ ├── CurrentDateFunction.php │ │ │ │ │ ├── CurrentTimeFunction.php │ │ │ │ │ ├── CurrentTimestampFunction.php │ │ │ │ │ ├── DateAddFunction.php │ │ │ │ │ ├── DateDiffFunction.php │ │ │ │ │ ├── DateSubFunction.php │ │ │ │ │ ├── FunctionNode.php │ │ │ │ │ ├── IdentityFunction.php │ │ │ │ │ ├── LengthFunction.php │ │ │ │ │ ├── LocateFunction.php │ │ │ │ │ ├── LowerFunction.php │ │ │ │ │ ├── MaxFunction.php │ │ │ │ │ ├── MinFunction.php │ │ │ │ │ ├── ModFunction.php │ │ │ │ │ ├── SizeFunction.php │ │ │ │ │ ├── SqrtFunction.php │ │ │ │ │ ├── SubstringFunction.php │ │ │ │ │ ├── SumFunction.php │ │ │ │ │ ├── TrimFunction.php │ │ │ │ │ └── UpperFunction.php │ │ │ │ ├── GeneralCaseExpression.php │ │ │ │ ├── GroupByClause.php │ │ │ │ ├── HavingClause.php │ │ │ │ ├── IdentificationVariableDeclaration.php │ │ │ │ ├── InListExpression.php │ │ │ │ ├── InSubselectExpression.php │ │ │ │ ├── IndexBy.php │ │ │ │ ├── InputParameter.php │ │ │ │ ├── InstanceOfExpression.php │ │ │ │ ├── Join.php │ │ │ │ ├── JoinAssociationDeclaration.php │ │ │ │ ├── JoinAssociationPathExpression.php │ │ │ │ ├── JoinClassPathExpression.php │ │ │ │ ├── JoinVariableDeclaration.php │ │ │ │ ├── LikeExpression.php │ │ │ │ ├── Literal.php │ │ │ │ ├── NewObjectExpression.php │ │ │ │ ├── Node.php │ │ │ │ ├── NullComparisonExpression.php │ │ │ │ ├── NullIfExpression.php │ │ │ │ ├── OrderByClause.php │ │ │ │ ├── OrderByItem.php │ │ │ │ ├── ParenthesisExpression.php │ │ │ │ ├── PartialObjectExpression.php │ │ │ │ ├── PathExpression.php │ │ │ │ ├── Phase2OptimizableConditional.php │ │ │ │ ├── QuantifiedExpression.php │ │ │ │ ├── RangeVariableDeclaration.php │ │ │ │ ├── SelectClause.php │ │ │ │ ├── SelectExpression.php │ │ │ │ ├── SelectStatement.php │ │ │ │ ├── SimpleArithmeticExpression.php │ │ │ │ ├── SimpleCaseExpression.php │ │ │ │ ├── SimpleSelectClause.php │ │ │ │ ├── SimpleSelectExpression.php │ │ │ │ ├── SimpleWhenClause.php │ │ │ │ ├── Subselect.php │ │ │ │ ├── SubselectFromClause.php │ │ │ │ ├── SubselectIdentificationVariableDeclaration.php │ │ │ │ ├── TypedExpression.php │ │ │ │ ├── UpdateClause.php │ │ │ │ ├── UpdateItem.php │ │ │ │ ├── UpdateStatement.php │ │ │ │ ├── WhenClause.php │ │ │ │ └── WhereClause.php │ │ │ ├── Exec │ │ │ │ ├── AbstractSqlExecutor.php │ │ │ │ ├── FinalizedSelectExecutor.php │ │ │ │ ├── MultiTableDeleteExecutor.php │ │ │ │ ├── MultiTableUpdateExecutor.php │ │ │ │ ├── PreparedExecutorFinalizer.php │ │ │ │ ├── SingleSelectExecutor.php │ │ │ │ ├── SingleSelectSqlFinalizer.php │ │ │ │ ├── SingleTableDeleteUpdateExecutor.php │ │ │ │ └── SqlFinalizer.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── Andx.php │ │ │ │ ├── Base.php │ │ │ │ ├── Comparison.php │ │ │ │ ├── Composite.php │ │ │ │ ├── From.php │ │ │ │ ├── Func.php │ │ │ │ ├── GroupBy.php │ │ │ │ ├── Join.php │ │ │ │ ├── Literal.php │ │ │ │ ├── Math.php │ │ │ │ ├── OrderBy.php │ │ │ │ ├── Orx.php │ │ │ │ └── Select.php │ │ │ ├── Filter │ │ │ │ ├── FilterException.php │ │ │ │ └── SQLFilter.php │ │ │ ├── FilterCollection.php │ │ │ ├── Lexer.php │ │ │ ├── OutputWalker.php │ │ │ ├── Parameter.php │ │ │ ├── ParameterTypeInferer.php │ │ │ ├── Parser.php │ │ │ ├── ParserResult.php │ │ │ ├── Printer.php │ │ │ ├── QueryException.php │ │ │ ├── QueryExpressionVisitor.php │ │ │ ├── ResultSetMapping.php │ │ │ ├── ResultSetMappingBuilder.php │ │ │ ├── SqlOutputWalker.php │ │ │ ├── SqlWalker.php │ │ │ ├── TokenType.php │ │ │ ├── TreeWalker.php │ │ │ ├── TreeWalkerAdapter.php │ │ │ └── TreeWalkerChain.php │ │ │ ├── QueryBuilder.php │ │ │ ├── QueryType.php │ │ │ ├── Repository │ │ │ ├── DefaultRepositoryFactory.php │ │ │ ├── Exception │ │ │ │ ├── InvalidFindByCall.php │ │ │ │ └── InvalidMagicMethodCall.php │ │ │ └── RepositoryFactory.php │ │ │ ├── Tools │ │ │ ├── AttachEntityListenersListener.php │ │ │ ├── Console │ │ │ │ ├── ApplicationCompatibility.php │ │ │ │ ├── Command │ │ │ │ │ ├── AbstractEntityManagerCommand.php │ │ │ │ │ ├── ClearCache │ │ │ │ │ │ ├── CollectionRegionCommand.php │ │ │ │ │ │ ├── EntityRegionCommand.php │ │ │ │ │ │ ├── MetadataCommand.php │ │ │ │ │ │ ├── QueryCommand.php │ │ │ │ │ │ ├── QueryRegionCommand.php │ │ │ │ │ │ └── ResultCommand.php │ │ │ │ │ ├── GenerateProxiesCommand.php │ │ │ │ │ ├── InfoCommand.php │ │ │ │ │ ├── MappingDescribeCommand.php │ │ │ │ │ ├── RunDqlCommand.php │ │ │ │ │ ├── SchemaTool │ │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ │ ├── CreateCommand.php │ │ │ │ │ │ ├── DropCommand.php │ │ │ │ │ │ └── UpdateCommand.php │ │ │ │ │ └── ValidateSchemaCommand.php │ │ │ │ ├── ConsoleRunner.php │ │ │ │ ├── EntityManagerProvider.php │ │ │ │ ├── EntityManagerProvider │ │ │ │ │ ├── ConnectionFromManagerProvider.php │ │ │ │ │ ├── SingleManagerProvider.php │ │ │ │ │ └── UnknownManagerException.php │ │ │ │ └── MetadataFilter.php │ │ │ ├── Debug.php │ │ │ ├── DebugUnitOfWorkListener.php │ │ │ ├── Event │ │ │ │ ├── GenerateSchemaEventArgs.php │ │ │ │ └── GenerateSchemaTableEventArgs.php │ │ │ ├── Exception │ │ │ │ ├── MissingColumnException.php │ │ │ │ └── NotSupported.php │ │ │ ├── Pagination │ │ │ │ ├── CountOutputWalker.php │ │ │ │ ├── CountWalker.php │ │ │ │ ├── Exception │ │ │ │ │ └── RowNumberOverFunctionNotEnabled.php │ │ │ │ ├── LimitSubqueryOutputWalker.php │ │ │ │ ├── LimitSubqueryWalker.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── RootTypeWalker.php │ │ │ │ ├── RowNumberOverFunction.php │ │ │ │ └── WhereInWalker.php │ │ │ ├── ResolveTargetEntityListener.php │ │ │ ├── SchemaTool.php │ │ │ ├── SchemaValidator.php │ │ │ ├── ToolEvents.php │ │ │ └── ToolsException.php │ │ │ ├── TransactionRequiredException.php │ │ │ ├── UnexpectedResultException.php │ │ │ ├── UnitOfWork.php │ │ │ └── Utility │ │ │ ├── HierarchyDiscriminatorResolver.php │ │ │ ├── IdentifierFlattener.php │ │ │ ├── LockSqlHelper.php │ │ │ └── PersisterHelper.php │ ├── persistence │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ │ └── Persistence │ │ │ ├── AbstractManagerRegistry.php │ │ │ ├── ConnectionRegistry.php │ │ │ ├── Event │ │ │ ├── LifecycleEventArgs.php │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ ├── ManagerEventArgs.php │ │ │ ├── OnClearEventArgs.php │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── ManagerRegistry.php │ │ │ ├── Mapping │ │ │ ├── AbstractClassMetadataFactory.php │ │ │ ├── ClassMetadata.php │ │ │ ├── ClassMetadataFactory.php │ │ │ ├── Driver │ │ │ │ ├── ClassLocator.php │ │ │ │ ├── ClassNames.php │ │ │ │ ├── ColocatedMappingDriver.php │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ ├── FileClassLocator.php │ │ │ │ ├── FileDriver.php │ │ │ │ ├── FileLocator.php │ │ │ │ ├── MappingDriver.php │ │ │ │ ├── MappingDriverChain.php │ │ │ │ ├── PHPDriver.php │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ └── SymfonyFileLocator.php │ │ │ ├── MappingException.php │ │ │ ├── ProxyClassNameResolver.php │ │ │ ├── ReflectionService.php │ │ │ └── RuntimeReflectionService.php │ │ │ ├── NotifyPropertyChanged.php │ │ │ ├── ObjectManager.php │ │ │ ├── ObjectManagerDecorator.php │ │ │ ├── ObjectRepository.php │ │ │ ├── PropertyChangedListener.php │ │ │ ├── Proxy.php │ │ │ └── Reflection │ │ │ ├── EnumReflectionProperty.php │ │ │ ├── RuntimeReflectionProperty.php │ │ │ └── TypedNoDefaultReflectionProperty.php │ └── sql-formatter │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bin │ │ └── sql-formatter │ │ ├── composer.json │ │ └── src │ │ ├── CliHighlighter.php │ │ ├── Cursor.php │ │ ├── Highlighter.php │ │ ├── HtmlHighlighter.php │ │ ├── NullHighlighter.php │ │ ├── SqlFormatter.php │ │ ├── Token.php │ │ └── Tokenizer.php │ ├── egulias │ └── email-validator │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── MessageIDParser.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Comment.php │ │ ├── CommentStrategy │ │ │ ├── CommentStrategy.php │ │ │ ├── DomainComment.php │ │ │ └── LocalComment.php │ │ ├── DomainLiteral.php │ │ ├── DomainPart.php │ │ ├── DoubleQuote.php │ │ ├── FoldingWhiteSpace.php │ │ ├── IDLeftPart.php │ │ ├── IDRightPart.php │ │ ├── LocalPart.php │ │ └── PartParser.php │ │ ├── Result │ │ ├── InvalidEmail.php │ │ ├── MultipleErrors.php │ │ ├── Reason │ │ │ ├── AtextAfterCFWS.php │ │ │ ├── CRLFAtTheEnd.php │ │ │ ├── CRLFX2.php │ │ │ ├── CRNoLF.php │ │ │ ├── CharNotAllowed.php │ │ │ ├── CommaInDomain.php │ │ │ ├── CommentsInIDRight.php │ │ │ ├── ConsecutiveAt.php │ │ │ ├── ConsecutiveDot.php │ │ │ ├── DetailedReason.php │ │ │ ├── DomainAcceptsNoMail.php │ │ │ ├── DomainHyphened.php │ │ │ ├── DomainTooLong.php │ │ │ ├── DotAtEnd.php │ │ │ ├── DotAtStart.php │ │ │ ├── EmptyReason.php │ │ │ ├── ExceptionFound.php │ │ │ ├── ExpectingATEXT.php │ │ │ ├── ExpectingCTEXT.php │ │ │ ├── ExpectingDTEXT.php │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ ├── LabelTooLong.php │ │ │ ├── LocalOrReservedDomain.php │ │ │ ├── NoDNSRecord.php │ │ │ ├── NoDomainPart.php │ │ │ ├── NoLocalPart.php │ │ │ ├── RFCWarnings.php │ │ │ ├── Reason.php │ │ │ ├── SpoofEmail.php │ │ │ ├── UnOpenedComment.php │ │ │ ├── UnableToGetDNSRecord.php │ │ │ ├── UnclosedComment.php │ │ │ ├── UnclosedQuotedString.php │ │ │ └── UnusualElements.php │ │ ├── Result.php │ │ ├── SpoofEmail.php │ │ └── ValidEmail.php │ │ ├── Validation │ │ ├── DNSCheckValidation.php │ │ ├── DNSGetRecordWrapper.php │ │ ├── DNSRecords.php │ │ ├── EmailValidation.php │ │ ├── Exception │ │ │ └── EmptyValidationList.php │ │ ├── Extra │ │ │ └── SpoofCheckValidation.php │ │ ├── MessageIDValidation.php │ │ ├── MultipleValidationWithAnd.php │ │ ├── NoRFCWarningsValidation.php │ │ └── RFCValidation.php │ │ └── Warning │ │ ├── AddressLiteral.php │ │ ├── CFWSNearAt.php │ │ ├── CFWSWithFWS.php │ │ ├── Comment.php │ │ ├── DeprecatedComment.php │ │ ├── DomainLiteral.php │ │ ├── EmailTooLong.php │ │ ├── IPV6BadChar.php │ │ ├── IPV6ColonEnd.php │ │ ├── IPV6ColonStart.php │ │ ├── IPV6Deprecated.php │ │ ├── IPV6DoubleColon.php │ │ ├── IPV6GroupCount.php │ │ ├── IPV6MaxGroups.php │ │ ├── LocalTooLong.php │ │ ├── NoDNSMXRecord.php │ │ ├── ObsoleteDTEXT.php │ │ ├── QuotedPart.php │ │ ├── QuotedString.php │ │ ├── TLD.php │ │ └── Warning.php │ ├── masterminds │ └── html5 │ │ ├── CREDITS │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── UPGRADING.md │ │ ├── bin │ │ └── entities.php │ │ ├── composer.json │ │ └── src │ │ ├── HTML5.php │ │ └── HTML5 │ │ ├── Elements.php │ │ ├── Entities.php │ │ ├── Exception.php │ │ ├── InstructionProcessor.php │ │ ├── Parser │ │ ├── CharacterReference.php │ │ ├── DOMTreeBuilder.php │ │ ├── EventHandler.php │ │ ├── FileInputStream.php │ │ ├── InputStream.php │ │ ├── ParseError.php │ │ ├── README.md │ │ ├── Scanner.php │ │ ├── StringInputStream.php │ │ ├── Tokenizer.php │ │ ├── TreeBuildingRules.php │ │ └── UTF8Utils.php │ │ └── Serializer │ │ ├── HTML5Entities.php │ │ ├── OutputRules.php │ │ ├── README.md │ │ ├── RulesInterface.php │ │ └── Traverser.php │ ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ ├── AsMonologProcessor.php │ │ └── WithMonologChannel.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── ElasticsearchFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── GoogleCloudLoggingFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogmaticFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ ├── SyslogFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticaHandler.php │ │ ├── ElasticsearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FallbackGroupHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── LogmaticHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NoopHandler.php │ │ ├── NullHandler.php │ │ ├── OverflowHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RedisHandler.php │ │ ├── RedisPubSubHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SendGridHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SocketHandler.php │ │ ├── SqsHandler.php │ │ ├── StreamHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── JsonSerializableDateTimeImmutable.php │ │ ├── Level.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── ClosureContextProcessor.php │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── LoadAverageProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ ├── Test │ │ ├── MonologTestCase.php │ │ └── TestCase.php │ │ └── Utils.php │ ├── myclabs │ └── deep-copy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── ChainableFilter.php │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ ├── DateIntervalFilter.php │ │ │ └── DatePeriodFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── Builder │ │ ├── ClassConst.php │ │ ├── Class_.php │ │ ├── Declaration.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── FunctionLike.php │ │ ├── Function_.php │ │ ├── Interface_.php │ │ ├── Method.php │ │ ├── Namespace_.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── Trait_.php │ │ └── Use_.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ ├── TokenPolyfill.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AsymmetricVisibilityTokenEmulator.php │ │ │ ├── AttributeEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── PipeOperatorEmulator.php │ │ │ ├── PropertyTokenEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ ├── TokenEmulator.php │ │ │ └── VoidCastEmulator.php │ │ ├── Modifiers.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── ArrayItem.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ClosureUse.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── DeclareItem.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Pipe.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ └── Spaceship.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ ├── Unset_.php │ │ │ │ └── Void_.php │ │ │ ├── ClassConstFetch.php │ │ │ ├── Clone_.php │ │ │ ├── Closure.php │ │ │ ├── ClosureUse.php │ │ │ ├── ConstFetch.php │ │ │ ├── Empty_.php │ │ │ ├── Error.php │ │ │ ├── ErrorSuppress.php │ │ │ ├── Eval_.php │ │ │ ├── Exit_.php │ │ │ ├── FuncCall.php │ │ │ ├── Include_.php │ │ │ ├── Instanceof_.php │ │ │ ├── Isset_.php │ │ │ ├── List_.php │ │ │ ├── Match_.php │ │ │ ├── MethodCall.php │ │ │ ├── New_.php │ │ │ ├── NullsafeMethodCall.php │ │ │ ├── NullsafePropertyFetch.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print_.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── Throw_.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ ├── YieldFrom.php │ │ │ └── Yield_.php │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── InterpolatedStringPart.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── PropertyHook.php │ │ ├── PropertyItem.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── Float_.php │ │ │ ├── Int_.php │ │ │ ├── InterpolatedString.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Property.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── StaticVar.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── Block.php │ │ │ ├── Break_.php │ │ │ ├── Case_.php │ │ │ ├── Catch_.php │ │ │ ├── ClassConst.php │ │ │ ├── ClassLike.php │ │ │ ├── ClassMethod.php │ │ │ ├── Class_.php │ │ │ ├── Const_.php │ │ │ ├── Continue_.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── Declare_.php │ │ │ ├── Do_.php │ │ │ ├── Echo_.php │ │ │ ├── ElseIf_.php │ │ │ ├── Else_.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── Expression.php │ │ │ ├── Finally_.php │ │ │ ├── For_.php │ │ │ ├── Foreach_.php │ │ │ ├── Function_.php │ │ │ ├── Global_.php │ │ │ ├── Goto_.php │ │ │ ├── GroupUse.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If_.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface_.php │ │ │ ├── Label.php │ │ │ ├── Namespace_.php │ │ │ ├── Nop.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return_.php │ │ │ ├── StaticVar.php │ │ │ ├── Static_.php │ │ │ ├── Switch_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── UseItem.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── CommentAnnotatingVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Php7.php │ │ └── Php8.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PhpVersion.php │ │ ├── PrettyPrinter.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Token.php │ │ └── compatibility_tokens.php │ ├── phar-io │ ├── manifest │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .php-cs-fixer.dist.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── manifest.xsd │ │ ├── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ │ ├── ElementCollectionException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidApplicationNameException.php │ │ │ │ ├── InvalidEmailException.php │ │ │ │ ├── InvalidUrlException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ └── NoEmailAddressException.php │ │ │ ├── values │ │ │ │ ├── Application.php │ │ │ │ ├── ApplicationName.php │ │ │ │ ├── Author.php │ │ │ │ ├── AuthorCollection.php │ │ │ │ ├── AuthorCollectionIterator.php │ │ │ │ ├── BundledComponent.php │ │ │ │ ├── BundledComponentCollection.php │ │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ │ ├── CopyrightInformation.php │ │ │ │ ├── Email.php │ │ │ │ ├── Extension.php │ │ │ │ ├── Library.php │ │ │ │ ├── License.php │ │ │ │ ├── Manifest.php │ │ │ │ ├── PhpExtensionRequirement.php │ │ │ │ ├── PhpVersionRequirement.php │ │ │ │ ├── Requirement.php │ │ │ │ ├── RequirementCollection.php │ │ │ │ ├── RequirementCollectionIterator.php │ │ │ │ ├── Type.php │ │ │ │ └── Url.php │ │ │ └── xml │ │ │ │ ├── AuthorElement.php │ │ │ │ ├── AuthorElementCollection.php │ │ │ │ ├── BundlesElement.php │ │ │ │ ├── ComponentElement.php │ │ │ │ ├── ComponentElementCollection.php │ │ │ │ ├── ContainsElement.php │ │ │ │ ├── CopyrightElement.php │ │ │ │ ├── ElementCollection.php │ │ │ │ ├── ExtElement.php │ │ │ │ ├── ExtElementCollection.php │ │ │ │ ├── ExtensionElement.php │ │ │ │ ├── LicenseElement.php │ │ │ │ ├── ManifestDocument.php │ │ │ │ ├── ManifestElement.php │ │ │ │ ├── PhpElement.php │ │ │ │ └── RequiresElement.php │ │ └── tools │ │ │ └── php-cs-fixer.d │ │ │ ├── PhpdocSingleLineVarFixer.php │ │ │ └── header.txt │ └── version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php │ ├── phpdocumentor │ ├── reflection-common │ │ ├── .github │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ └── push.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ ├── reflection-docblock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── DocBlock.php │ │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Extends_.php │ │ │ │ ├── Factory │ │ │ │ ├── AbstractPHPStanFactory.php │ │ │ │ ├── ExtendsFactory.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ImplementsFactory.php │ │ │ │ ├── MethodFactory.php │ │ │ │ ├── MethodParameterFactory.php │ │ │ │ ├── PHPStanFactory.php │ │ │ │ ├── ParamFactory.php │ │ │ │ ├── PropertyFactory.php │ │ │ │ ├── PropertyReadFactory.php │ │ │ │ ├── PropertyWriteFactory.php │ │ │ │ ├── ReturnFactory.php │ │ │ │ ├── StaticMethod.php │ │ │ │ ├── TemplateExtendsFactory.php │ │ │ │ ├── TemplateFactory.php │ │ │ │ ├── TemplateImplementsFactory.php │ │ │ │ └── VarFactory.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Implements_.php │ │ │ │ ├── InvalidTag.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── MethodParameter.php │ │ │ │ ├── Mixin.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Reference.php │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── TagWithType.php │ │ │ │ ├── Template.php │ │ │ │ ├── TemplateCovariant.php │ │ │ │ ├── TemplateExtends.php │ │ │ │ ├── TemplateImplements.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ ├── DocBlockFactoryInterface.php │ │ │ ├── Exception │ │ │ └── PcreException.php │ │ │ └── Utils.php │ └── type-resolver │ │ ├── .phpdoc │ │ └── template │ │ │ └── base.html.twig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── getting-started.rst │ │ └── index.rst │ │ ├── phpdoc.dist.xml │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── PseudoType.php │ │ ├── PseudoTypes │ │ ├── ArrayShape.php │ │ ├── ArrayShapeItem.php │ │ ├── CallableString.php │ │ ├── ConstExpression.php │ │ ├── False_.php │ │ ├── FloatValue.php │ │ ├── HtmlEscapedString.php │ │ ├── IntegerRange.php │ │ ├── IntegerValue.php │ │ ├── ListShape.php │ │ ├── ListShapeItem.php │ │ ├── List_.php │ │ ├── LiteralString.php │ │ ├── LowercaseString.php │ │ ├── NegativeInteger.php │ │ ├── NonEmptyArray.php │ │ ├── NonEmptyList.php │ │ ├── NonEmptyLowercaseString.php │ │ ├── NonEmptyString.php │ │ ├── NumericString.php │ │ ├── Numeric_.php │ │ ├── ObjectShape.php │ │ ├── ObjectShapeItem.php │ │ ├── PositiveInteger.php │ │ ├── ShapeItem.php │ │ ├── StringValue.php │ │ ├── TraitString.php │ │ └── True_.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── AbstractList.php │ │ ├── AggregatedType.php │ │ ├── ArrayKey.php │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── CallableParameter.php │ │ ├── Callable_.php │ │ ├── ClassString.php │ │ ├── Collection.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Expression.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── InterfaceString.php │ │ ├── Intersection.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Never_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ ├── phpstan │ └── phpdoc-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ ├── Ast │ │ ├── AbstractNodeVisitor.php │ │ ├── Attribute.php │ │ ├── Comment.php │ │ ├── ConstExpr │ │ │ ├── ConstExprArrayItemNode.php │ │ │ ├── ConstExprArrayNode.php │ │ │ ├── ConstExprFalseNode.php │ │ │ ├── ConstExprFloatNode.php │ │ │ ├── ConstExprIntegerNode.php │ │ │ ├── ConstExprNode.php │ │ │ ├── ConstExprNullNode.php │ │ │ ├── ConstExprStringNode.php │ │ │ ├── ConstExprTrueNode.php │ │ │ ├── ConstFetchNode.php │ │ │ └── DoctrineConstExprStringNode.php │ │ ├── Node.php │ │ ├── NodeAttributes.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── CloningVisitor.php │ │ ├── PhpDoc │ │ │ ├── AssertTagMethodValueNode.php │ │ │ ├── AssertTagPropertyValueNode.php │ │ │ ├── AssertTagValueNode.php │ │ │ ├── DeprecatedTagValueNode.php │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineAnnotation.php │ │ │ │ ├── DoctrineArgument.php │ │ │ │ ├── DoctrineArray.php │ │ │ │ ├── DoctrineArrayItem.php │ │ │ │ └── DoctrineTagValueNode.php │ │ │ ├── ExtendsTagValueNode.php │ │ │ ├── GenericTagValueNode.php │ │ │ ├── ImplementsTagValueNode.php │ │ │ ├── InvalidTagValueNode.php │ │ │ ├── MethodTagValueNode.php │ │ │ ├── MethodTagValueParameterNode.php │ │ │ ├── MixinTagValueNode.php │ │ │ ├── ParamClosureThisTagValueNode.php │ │ │ ├── ParamImmediatelyInvokedCallableTagValueNode.php │ │ │ ├── ParamLaterInvokedCallableTagValueNode.php │ │ │ ├── ParamOutTagValueNode.php │ │ │ ├── ParamTagValueNode.php │ │ │ ├── PhpDocChildNode.php │ │ │ ├── PhpDocNode.php │ │ │ ├── PhpDocTagNode.php │ │ │ ├── PhpDocTagValueNode.php │ │ │ ├── PhpDocTextNode.php │ │ │ ├── PropertyTagValueNode.php │ │ │ ├── PureUnlessCallableIsImpureTagValueNode.php │ │ │ ├── RequireExtendsTagValueNode.php │ │ │ ├── RequireImplementsTagValueNode.php │ │ │ ├── ReturnTagValueNode.php │ │ │ ├── SealedTagValueNode.php │ │ │ ├── SelfOutTagValueNode.php │ │ │ ├── TemplateTagValueNode.php │ │ │ ├── ThrowsTagValueNode.php │ │ │ ├── TypeAliasImportTagValueNode.php │ │ │ ├── TypeAliasTagValueNode.php │ │ │ ├── TypelessParamTagValueNode.php │ │ │ ├── UsesTagValueNode.php │ │ │ └── VarTagValueNode.php │ │ └── Type │ │ │ ├── ArrayShapeItemNode.php │ │ │ ├── ArrayShapeNode.php │ │ │ ├── ArrayShapeUnsealedTypeNode.php │ │ │ ├── ArrayTypeNode.php │ │ │ ├── CallableTypeNode.php │ │ │ ├── CallableTypeParameterNode.php │ │ │ ├── ConditionalTypeForParameterNode.php │ │ │ ├── ConditionalTypeNode.php │ │ │ ├── ConstTypeNode.php │ │ │ ├── GenericTypeNode.php │ │ │ ├── IdentifierTypeNode.php │ │ │ ├── IntersectionTypeNode.php │ │ │ ├── InvalidTypeNode.php │ │ │ ├── NullableTypeNode.php │ │ │ ├── ObjectShapeItemNode.php │ │ │ ├── ObjectShapeNode.php │ │ │ ├── OffsetAccessTypeNode.php │ │ │ ├── ThisTypeNode.php │ │ │ ├── TypeNode.php │ │ │ └── UnionTypeNode.php │ │ ├── Lexer │ │ └── Lexer.php │ │ ├── Parser │ │ ├── ConstExprParser.php │ │ ├── ParserException.php │ │ ├── PhpDocParser.php │ │ ├── StringUnescaper.php │ │ ├── TokenIterator.php │ │ └── TypeParser.php │ │ ├── ParserConfig.php │ │ └── Printer │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ └── Printer.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog-11.0.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Data │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ └── RawCodeCoverageData.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── Selector.php │ │ │ └── XdebugDriver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── FileCouldNotBeWrittenException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ ├── XdebugNotEnabledException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Colors.php │ │ │ │ ├── CustomCssFile.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── nv.d3.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── Thresholds.php │ │ │ └── Xml │ │ │ │ ├── BuildInformation.php │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ │ ├── StaticAnalysis │ │ │ ├── CacheWarmer.php │ │ │ ├── CachingFileAnalyser.php │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ ├── FileAnalyser.php │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ │ ├── TestStatus │ │ │ ├── Failure.php │ │ │ ├── Known.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ └── Unknown.php │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ExcludeIterator.php │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── ChangeLog-11.5.md │ │ ├── DEPRECATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 10.0.xsd │ │ ├── 10.1.xsd │ │ ├── 10.2.xsd │ │ ├── 10.3.xsd │ │ ├── 10.4.xsd │ │ ├── 10.5.xsd │ │ ├── 11.0.xsd │ │ ├── 11.1.xsd │ │ ├── 11.2.xsd │ │ ├── 11.3.xsd │ │ ├── 11.4.xsd │ │ ├── 8.5.xsd │ │ ├── 9.0.xsd │ │ ├── 9.1.xsd │ │ ├── 9.2.xsd │ │ ├── 9.3.xsd │ │ ├── 9.4.xsd │ │ └── 9.5.xsd │ │ └── src │ │ ├── Event │ │ ├── Dispatcher │ │ │ ├── CollectingDispatcher.php │ │ │ ├── DeferringDispatcher.php │ │ │ ├── DirectDispatcher.php │ │ │ ├── Dispatcher.php │ │ │ └── SubscribableDispatcher.php │ │ ├── Emitter │ │ │ ├── DispatchingEmitter.php │ │ │ └── Emitter.php │ │ ├── Events │ │ │ ├── Application │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ │ ├── Event.php │ │ │ ├── EventCollection.php │ │ │ ├── EventCollectionIterator.php │ │ │ ├── Test │ │ │ │ ├── ComparatorRegistered.php │ │ │ │ ├── ComparatorRegisteredSubscriber.php │ │ │ │ ├── HookMethod │ │ │ │ │ ├── AfterLastTestMethodCalled.php │ │ │ │ │ ├── AfterLastTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterLastTestMethodErrored.php │ │ │ │ │ ├── AfterLastTestMethodErroredSubscriber.php │ │ │ │ │ ├── AfterLastTestMethodFinished.php │ │ │ │ │ ├── AfterLastTestMethodFinishedSubscriber.php │ │ │ │ │ ├── AfterTestMethodCalled.php │ │ │ │ │ ├── AfterTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterTestMethodErrored.php │ │ │ │ │ ├── AfterTestMethodErroredSubscriber.php │ │ │ │ │ ├── AfterTestMethodFinished.php │ │ │ │ │ ├── AfterTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodCalled.php │ │ │ │ │ ├── BeforeFirstTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodErrored.php │ │ │ │ │ ├── BeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodFinished.php │ │ │ │ │ ├── BeforeFirstTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeTestMethodCalled.php │ │ │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeTestMethodErrored.php │ │ │ │ │ ├── BeforeTestMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeTestMethodFinished.php │ │ │ │ │ ├── BeforeTestMethodFinishedSubscriber.php │ │ │ │ │ ├── PostConditionCalled.php │ │ │ │ │ ├── PostConditionCalledSubscriber.php │ │ │ │ │ ├── PostConditionErrored.php │ │ │ │ │ ├── PostConditionErroredSubscriber.php │ │ │ │ │ ├── PostConditionFinished.php │ │ │ │ │ ├── PostConditionFinishedSubscriber.php │ │ │ │ │ ├── PreConditionCalled.php │ │ │ │ │ ├── PreConditionCalledSubscriber.php │ │ │ │ │ ├── PreConditionErrored.php │ │ │ │ │ ├── PreConditionErroredSubscriber.php │ │ │ │ │ ├── PreConditionFinished.php │ │ │ │ │ └── PreConditionFinishedSubscriber.php │ │ │ │ ├── Issue │ │ │ │ │ ├── ConsideredRisky.php │ │ │ │ │ ├── ConsideredRiskySubscriber.php │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ ├── ErrorTriggered.php │ │ │ │ │ ├── ErrorTriggeredSubscriber.php │ │ │ │ │ ├── NoticeTriggered.php │ │ │ │ │ ├── NoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpDeprecationTriggered.php │ │ │ │ │ ├── PhpDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpNoticeTriggered.php │ │ │ │ │ ├── PhpNoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpWarningTriggered.php │ │ │ │ │ ├── PhpWarningTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitDeprecationTriggered.php │ │ │ │ │ ├── PhpunitDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitErrorTriggered.php │ │ │ │ │ ├── PhpunitErrorTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitWarningTriggered.php │ │ │ │ │ ├── PhpunitWarningTriggeredSubscriber.php │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ ├── Lifecycle │ │ │ │ │ ├── DataProviderMethodCalled.php │ │ │ │ │ ├── DataProviderMethodCalledSubscriber.php │ │ │ │ │ ├── DataProviderMethodFinished.php │ │ │ │ │ ├── DataProviderMethodFinishedSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── PreparationFailed.php │ │ │ │ │ ├── PreparationFailedSubscriber.php │ │ │ │ │ ├── PreparationStarted.php │ │ │ │ │ ├── PreparationStartedSubscriber.php │ │ │ │ │ ├── Prepared.php │ │ │ │ │ └── PreparedSubscriber.php │ │ │ │ ├── Outcome │ │ │ │ │ ├── Errored.php │ │ │ │ │ ├── ErroredSubscriber.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── FailedSubscriber.php │ │ │ │ │ ├── MarkedIncomplete.php │ │ │ │ │ ├── MarkedIncompleteSubscriber.php │ │ │ │ │ ├── Passed.php │ │ │ │ │ ├── PassedSubscriber.php │ │ │ │ │ ├── Skipped.php │ │ │ │ │ └── SkippedSubscriber.php │ │ │ │ ├── PrintedUnexpectedOutput.php │ │ │ │ ├── PrintedUnexpectedOutputSubscriber.php │ │ │ │ └── TestDouble │ │ │ │ │ ├── MockObjectCreated.php │ │ │ │ │ ├── MockObjectCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForAbstractClassCreated.php │ │ │ │ │ ├── MockObjectForAbstractClassCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreated.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForTraitCreated.php │ │ │ │ │ ├── MockObjectForTraitCreatedSubscriber.php │ │ │ │ │ ├── MockObjectFromWsdlCreated.php │ │ │ │ │ ├── MockObjectFromWsdlCreatedSubscriber.php │ │ │ │ │ ├── PartialMockObjectCreated.php │ │ │ │ │ ├── PartialMockObjectCreatedSubscriber.php │ │ │ │ │ ├── TestProxyCreated.php │ │ │ │ │ ├── TestProxyCreatedSubscriber.php │ │ │ │ │ ├── TestStubCreated.php │ │ │ │ │ ├── TestStubCreatedSubscriber.php │ │ │ │ │ ├── TestStubForIntersectionOfInterfacesCreated.php │ │ │ │ │ └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ ├── TestRunner │ │ │ │ ├── BootstrapFinished.php │ │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ │ ├── ChildProcessFinished.php │ │ │ │ ├── ChildProcessFinishedSubscriber.php │ │ │ │ ├── ChildProcessStarted.php │ │ │ │ ├── ChildProcessStartedSubscriber.php │ │ │ │ ├── Configured.php │ │ │ │ ├── ConfiguredSubscriber.php │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ ├── EventFacadeSealed.php │ │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ │ ├── ExecutionAborted.php │ │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ │ ├── ExecutionFinished.php │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStarted.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── ExtensionBootstrapped.php │ │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── GarbageCollectionDisabled.php │ │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ │ ├── GarbageCollectionEnabled.php │ │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ │ ├── GarbageCollectionTriggered.php │ │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ ├── StartedSubscriber.php │ │ │ │ ├── WarningTriggered.php │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ └── TestSuite │ │ │ │ ├── Filtered.php │ │ │ │ ├── FilteredSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Loaded.php │ │ │ │ ├── LoadedSubscriber.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── SkippedSubscriber.php │ │ │ │ ├── Sorted.php │ │ │ │ ├── SortedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ ├── Exception │ │ │ ├── EventAlreadyAssignedException.php │ │ │ ├── EventFacadeIsSealedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidEventException.php │ │ │ ├── InvalidSubscriberException.php │ │ │ ├── MapError.php │ │ │ ├── NoComparisonFailureException.php │ │ │ ├── NoDataSetFromDataProviderException.php │ │ │ ├── NoPreviousThrowableException.php │ │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ │ ├── UnknownEventException.php │ │ │ ├── UnknownEventTypeException.php │ │ │ ├── UnknownSubscriberException.php │ │ │ └── UnknownSubscriberTypeException.php │ │ ├── Facade.php │ │ ├── Subscriber.php │ │ ├── Tracer.php │ │ ├── TypeMap.php │ │ └── Value │ │ │ ├── ClassMethod.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── ComparisonFailureBuilder.php │ │ │ ├── Runtime │ │ │ ├── OperatingSystem.php │ │ │ ├── PHP.php │ │ │ ├── PHPUnit.php │ │ │ └── Runtime.php │ │ │ ├── Telemetry │ │ │ ├── Duration.php │ │ │ ├── GarbageCollectorStatus.php │ │ │ ├── GarbageCollectorStatusProvider.php │ │ │ ├── HRTime.php │ │ │ ├── Info.php │ │ │ ├── MemoryMeter.php │ │ │ ├── MemoryUsage.php │ │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ │ ├── Snapshot.php │ │ │ ├── StopWatch.php │ │ │ ├── System.php │ │ │ ├── SystemMemoryMeter.php │ │ │ ├── SystemStopWatch.php │ │ │ └── SystemStopWatchWithOffset.php │ │ │ ├── Test │ │ │ ├── Issue │ │ │ │ ├── DirectTrigger.php │ │ │ │ ├── IndirectTrigger.php │ │ │ │ ├── IssueTrigger.php │ │ │ │ ├── SelfTrigger.php │ │ │ │ ├── TestTrigger.php │ │ │ │ └── UnknownTrigger.php │ │ │ ├── Phpt.php │ │ │ ├── Test.php │ │ │ ├── TestCollection.php │ │ │ ├── TestCollectionIterator.php │ │ │ ├── TestData │ │ │ │ ├── DataFromDataProvider.php │ │ │ │ ├── DataFromTestDependency.php │ │ │ │ ├── TestData.php │ │ │ │ ├── TestDataCollection.php │ │ │ │ └── TestDataCollectionIterator.php │ │ │ ├── TestDox.php │ │ │ ├── TestDoxBuilder.php │ │ │ ├── TestMethod.php │ │ │ └── TestMethodBuilder.php │ │ │ ├── TestSuite │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── TestSuiteForTestClass.php │ │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ │ └── TestSuiteWithName.php │ │ │ ├── Throwable.php │ │ │ └── ThrowableBuilder.php │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Attributes │ │ │ ├── After.php │ │ │ ├── AfterClass.php │ │ │ ├── BackupGlobals.php │ │ │ ├── BackupStaticProperties.php │ │ │ ├── Before.php │ │ │ ├── BeforeClass.php │ │ │ ├── CoversClass.php │ │ │ ├── CoversFunction.php │ │ │ ├── CoversMethod.php │ │ │ ├── CoversNothing.php │ │ │ ├── CoversTrait.php │ │ │ ├── DataProvider.php │ │ │ ├── DataProviderExternal.php │ │ │ ├── Depends.php │ │ │ ├── DependsExternal.php │ │ │ ├── DependsExternalUsingDeepClone.php │ │ │ ├── DependsExternalUsingShallowClone.php │ │ │ ├── DependsOnClass.php │ │ │ ├── DependsOnClassUsingDeepClone.php │ │ │ ├── DependsOnClassUsingShallowClone.php │ │ │ ├── DependsUsingDeepClone.php │ │ │ ├── DependsUsingShallowClone.php │ │ │ ├── DisableReturnValueGenerationForTestDoubles.php │ │ │ ├── DoesNotPerformAssertions.php │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ ├── Group.php │ │ │ ├── IgnoreDeprecations.php │ │ │ ├── IgnorePhpunitDeprecations.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── PostCondition.php │ │ │ ├── PreCondition.php │ │ │ ├── PreserveGlobalState.php │ │ │ ├── RequiresFunction.php │ │ │ ├── RequiresMethod.php │ │ │ ├── RequiresOperatingSystem.php │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ ├── RequiresPhp.php │ │ │ ├── RequiresPhpExtension.php │ │ │ ├── RequiresPhpunit.php │ │ │ ├── RequiresPhpunitExtension.php │ │ │ ├── RequiresSetting.php │ │ │ ├── RunClassInSeparateProcess.php │ │ │ ├── RunInSeparateProcess.php │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ ├── Small.php │ │ │ ├── Test.php │ │ │ ├── TestDox.php │ │ │ ├── TestWith.php │ │ │ ├── TestWithJson.php │ │ │ ├── Ticket.php │ │ │ ├── UsesClass.php │ │ │ ├── UsesFunction.php │ │ │ ├── UsesMethod.php │ │ │ ├── UsesTrait.php │ │ │ └── WithoutErrorHandler.php │ │ ├── Constraint │ │ │ ├── Boolean │ │ │ │ ├── IsFalse.php │ │ │ │ └── IsTrue.php │ │ │ ├── Callback.php │ │ │ ├── Cardinality │ │ │ │ ├── Count.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── LessThan.php │ │ │ │ └── SameSize.php │ │ │ ├── Constraint.php │ │ │ ├── Equality │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ └── IsEqualWithDelta.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasProperty.php │ │ │ ├── Operator │ │ │ │ ├── BinaryOperator.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Operator.php │ │ │ │ └── UnaryOperator.php │ │ │ ├── String │ │ │ │ ├── IsJson.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── IsList.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Exception │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── EmptyStringException.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── GeneratorNotSupportedException.php │ │ │ ├── Incomplete │ │ │ │ ├── IncompleteTest.php │ │ │ │ └── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── InvalidDependencyException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── ObjectEquals │ │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ │ ├── PhptAssertionFailedError.php │ │ │ ├── ProcessIsolationException.php │ │ │ ├── Skipped │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ └── SkippedWithMessageException.php │ │ │ ├── UnknownClassOrInterfaceException.php │ │ │ └── UnknownTypeException.php │ │ ├── ExecutionOrderDependency.php │ │ ├── MockObject │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotCloneTestDoubleForReadonlyClassException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── NeverReturningMethodException.php │ │ │ │ ├── NoMoreReturnValuesConfiguredException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Generator │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ │ ├── NameAlreadyInUseException.php │ │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ │ ├── ReflectionException.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ │ ├── UnknownClassException.php │ │ │ │ │ ├── UnknownInterfaceException.php │ │ │ │ │ ├── UnknownTraitException.php │ │ │ │ │ └── UnknownTypeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── HookedProperty.php │ │ │ │ ├── HookedPropertyGenerator.php │ │ │ │ ├── MockClass.php │ │ │ │ ├── MockMethod.php │ │ │ │ ├── MockMethodSet.php │ │ │ │ ├── MockTrait.php │ │ │ │ ├── MockType.php │ │ │ │ ├── TemplateLoader.php │ │ │ │ └── templates │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ ├── doubled_method.tpl │ │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ │ ├── intersection.tpl │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ ├── test_double_class.tpl │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ └── wsdl_method.tpl │ │ │ ├── MockBuilder.php │ │ │ └── Runtime │ │ │ │ ├── Api │ │ │ │ ├── DoubledCloneMethod.php │ │ │ │ ├── ErrorCloneMethod.php │ │ │ │ ├── GeneratedAsMockObject.php │ │ │ │ ├── GeneratedAsTestStub.php │ │ │ │ ├── Method.php │ │ │ │ ├── MockObjectApi.php │ │ │ │ ├── MutableStubApi.php │ │ │ │ ├── ProxiedCloneMethod.php │ │ │ │ ├── StubApi.php │ │ │ │ └── TestDoubleState.php │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Interface │ │ │ │ ├── MockObject.php │ │ │ │ ├── MockObjectInternal.php │ │ │ │ ├── Stub.php │ │ │ │ └── StubInternal.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvocationHandler.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ ├── PropertyHook │ │ │ │ ├── PropertyGetHook.php │ │ │ │ ├── PropertyHook.php │ │ │ │ └── PropertySetHook.php │ │ │ │ ├── ReturnValueGenerator.php │ │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ │ └── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ ├── NativeType.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestRunner │ │ │ ├── ChildProcessResultProcessor.php │ │ │ ├── IsolatedTestRunner.php │ │ │ ├── IsolatedTestRunnerRegistry.php │ │ │ ├── SeparateProcessTestRunner.php │ │ │ ├── TestRunner.php │ │ │ └── templates │ │ │ │ ├── class.tpl │ │ │ │ └── method.tpl │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ ├── TestStatus │ │ │ ├── Deprecation.php │ │ │ ├── Error.php │ │ │ ├── Failure.php │ │ │ ├── Incomplete.php │ │ │ ├── Known.php │ │ │ ├── Notice.php │ │ │ ├── Risky.php │ │ │ ├── Skipped.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ ├── Unknown.php │ │ │ └── Warning.php │ │ ├── TestSuite.php │ │ └── TestSuiteIterator.php │ │ ├── Logging │ │ ├── EventLogger.php │ │ ├── JUnit │ │ │ ├── JunitXmlLogger.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparationFailedSubscriber.php │ │ │ │ ├── TestPreparationStartedSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestPrintedUnexpectedOutputSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TeamCity │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteBeforeFirstTestMethodErroredSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ └── TeamCityLogger.php │ │ └── TestDox │ │ │ ├── HtmlRenderer.php │ │ │ ├── NamePrettifier.php │ │ │ ├── PlainTextRenderer.php │ │ │ └── TestResult │ │ │ ├── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPassedSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ ├── TestSkippedSubscriber.php │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ ├── TestResult.php │ │ │ ├── TestResultCollection.php │ │ │ ├── TestResultCollectionIterator.php │ │ │ └── TestResultCollector.php │ │ ├── Metadata │ │ ├── After.php │ │ ├── AfterClass.php │ │ ├── Api │ │ │ ├── CodeCoverage.php │ │ │ ├── DataProvider.php │ │ │ ├── Dependencies.php │ │ │ ├── Groups.php │ │ │ ├── HookMethods.php │ │ │ └── Requirements.php │ │ ├── BackupGlobals.php │ │ ├── BackupStaticProperties.php │ │ ├── Before.php │ │ ├── BeforeClass.php │ │ ├── Covers.php │ │ ├── CoversClass.php │ │ ├── CoversDefaultClass.php │ │ ├── CoversFunction.php │ │ ├── CoversMethod.php │ │ ├── CoversNothing.php │ │ ├── CoversTrait.php │ │ ├── DataProvider.php │ │ ├── DependsOnClass.php │ │ ├── DependsOnMethod.php │ │ ├── DisableReturnValueGenerationForTestDoubles.php │ │ ├── DoesNotPerformAssertions.php │ │ ├── Exception │ │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidAttributeException.php │ │ │ ├── InvalidVersionRequirementException.php │ │ │ ├── NoVersionRequirementException.php │ │ │ └── ReflectionException.php │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ ├── Group.php │ │ ├── IgnoreDeprecations.php │ │ ├── IgnorePhpunitDeprecations.php │ │ ├── Metadata.php │ │ ├── MetadataCollection.php │ │ ├── MetadataCollectionIterator.php │ │ ├── Parser │ │ │ ├── Annotation │ │ │ │ ├── DocBlock.php │ │ │ │ └── Registry.php │ │ │ ├── AnnotationParser.php │ │ │ ├── AttributeParser.php │ │ │ ├── CachingParser.php │ │ │ ├── Parser.php │ │ │ ├── ParserChain.php │ │ │ └── Registry.php │ │ ├── PostCondition.php │ │ ├── PreCondition.php │ │ ├── PreserveGlobalState.php │ │ ├── RequiresFunction.php │ │ ├── RequiresMethod.php │ │ ├── RequiresOperatingSystem.php │ │ ├── RequiresOperatingSystemFamily.php │ │ ├── RequiresPhp.php │ │ ├── RequiresPhpExtension.php │ │ ├── RequiresPhpunit.php │ │ ├── RequiresPhpunitExtension.php │ │ ├── RequiresSetting.php │ │ ├── RunClassInSeparateProcess.php │ │ ├── RunInSeparateProcess.php │ │ ├── RunTestsInSeparateProcesses.php │ │ ├── Test.php │ │ ├── TestDox.php │ │ ├── TestWith.php │ │ ├── Uses.php │ │ ├── UsesClass.php │ │ ├── UsesDefaultClass.php │ │ ├── UsesFunction.php │ │ ├── UsesMethod.php │ │ ├── UsesTrait.php │ │ ├── Version │ │ │ ├── ComparisonRequirement.php │ │ │ ├── ConstraintRequirement.php │ │ │ └── Requirement.php │ │ └── WithoutErrorHandler.php │ │ ├── Runner │ │ ├── Baseline │ │ │ ├── Baseline.php │ │ │ ├── Exception │ │ │ │ ├── CannotLoadBaselineException.php │ │ │ │ ├── CannotWriteBaselineException.php │ │ │ │ └── FileDoesNotHaveLineException.php │ │ │ ├── Generator.php │ │ │ ├── Issue.php │ │ │ ├── Reader.php │ │ │ ├── RelativePathCalculator.php │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── Writer.php │ │ ├── CodeCoverage.php │ │ ├── DeprecationCollector │ │ │ ├── Collector.php │ │ │ ├── Facade.php │ │ │ ├── InIsolationCollector.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ └── TestTriggeredDeprecationSubscriber.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassCannotBeFoundException.php │ │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ │ ├── ClassIsAbstractException.php │ │ │ ├── DirectoryDoesNotExistException.php │ │ │ ├── ErrorException.php │ │ │ ├── Exception.php │ │ │ ├── FileDoesNotExistException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── InvalidPhptFileException.php │ │ │ ├── ParameterDoesNotExistException.php │ │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ │ └── UnsupportedPhptSectionException.php │ │ ├── Extension │ │ │ ├── Extension.php │ │ │ ├── ExtensionBootstrapper.php │ │ │ ├── Facade.php │ │ │ ├── ParameterCollection.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── ExcludeNameFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ ├── IncludeNameFilterIterator.php │ │ │ ├── NameFilterIterator.php │ │ │ └── TestIdFilterIterator.php │ │ ├── GarbageCollection │ │ │ ├── GarbageCollectionHandler.php │ │ │ └── Subscriber │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ └── TestFinishedSubscriber.php │ │ ├── HookMethod │ │ │ ├── HookMethod.php │ │ │ └── HookMethodCollection.php │ │ ├── IssueFilter.php │ │ ├── PHPT │ │ │ ├── PhptTestCase.php │ │ │ └── templates │ │ │ │ └── phpt.tpl │ │ ├── ResultCache │ │ │ ├── DefaultResultCache.php │ │ │ ├── NullResultCache.php │ │ │ ├── ResultCache.php │ │ │ ├── ResultCacheHandler.php │ │ │ ├── ResultCacheId.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TestResult │ │ │ ├── Collector.php │ │ │ ├── Facade.php │ │ │ ├── Issue.php │ │ │ ├── PassedTests.php │ │ │ ├── Subscriber │ │ │ │ ├── AfterTestClassMethodErroredSubscriber.php │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── TestResult.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── Commands │ │ │ │ ├── AtLeastVersionCommand.php │ │ │ │ ├── CheckPhpConfigurationCommand.php │ │ │ │ ├── GenerateConfigurationCommand.php │ │ │ │ ├── ListGroupsCommand.php │ │ │ │ ├── ListTestFilesCommand.php │ │ │ │ ├── ListTestSuitesCommand.php │ │ │ │ ├── ListTestsAsTextCommand.php │ │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ │ ├── MigrateConfigurationCommand.php │ │ │ │ ├── ShowHelpCommand.php │ │ │ │ ├── ShowVersionCommand.php │ │ │ │ ├── VersionCheckCommand.php │ │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ │ └── Result.php │ │ ├── Configuration │ │ │ ├── Builder.php │ │ │ ├── Cli │ │ │ │ ├── Builder.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Exception.php │ │ │ │ └── XmlConfigurationFileFinder.php │ │ │ ├── CodeCoverageFilterRegistry.php │ │ │ ├── Configuration.php │ │ │ ├── Exception │ │ │ │ ├── CannotFindSchemaException.php │ │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FilterNotConfiguredException.php │ │ │ │ ├── LoggingNotConfiguredException.php │ │ │ │ ├── NoBaselineException.php │ │ │ │ ├── NoBootstrapException.php │ │ │ │ ├── NoCacheDirectoryException.php │ │ │ │ ├── NoConfigurationFileException.php │ │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ │ ├── NoCustomCssFileException.php │ │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ │ ├── NoPharExtensionDirectoryException.php │ │ │ │ └── SpecificDeprecationToStopOnNotConfiguredException.php │ │ │ ├── Merger.php │ │ │ ├── PhpHandler.php │ │ │ ├── Registry.php │ │ │ ├── SourceFilter.php │ │ │ ├── SourceMapper.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── Value │ │ │ │ ├── Constant.php │ │ │ │ ├── ConstantCollection.php │ │ │ │ ├── ConstantCollectionIterator.php │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ ├── DirectoryCollectionIterator.php │ │ │ │ ├── ExtensionBootstrap.php │ │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ │ ├── File.php │ │ │ │ ├── FileCollection.php │ │ │ │ ├── FileCollectionIterator.php │ │ │ │ ├── FilterDirectory.php │ │ │ │ ├── FilterDirectoryCollection.php │ │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ │ ├── Group.php │ │ │ │ ├── GroupCollection.php │ │ │ │ ├── GroupCollectionIterator.php │ │ │ │ ├── IniSetting.php │ │ │ │ ├── IniSettingCollection.php │ │ │ │ ├── IniSettingCollectionIterator.php │ │ │ │ ├── Php.php │ │ │ │ ├── Source.php │ │ │ │ ├── TestDirectory.php │ │ │ │ ├── TestDirectoryCollection.php │ │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ │ ├── TestFile.php │ │ │ │ ├── TestFileCollection.php │ │ │ │ ├── TestFileCollectionIterator.php │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteCollection.php │ │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ │ ├── Variable.php │ │ │ │ ├── VariableCollection.php │ │ │ │ └── VariableCollectionIterator.php │ │ │ └── Xml │ │ │ │ ├── CodeCoverage │ │ │ │ ├── CodeCoverage.php │ │ │ │ └── Report │ │ │ │ │ ├── Clover.php │ │ │ │ │ ├── Cobertura.php │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ ├── Html.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Text.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── DefaultConfiguration.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Groups.php │ │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Logging │ │ │ │ ├── Junit.php │ │ │ │ ├── Logging.php │ │ │ │ ├── TeamCity.php │ │ │ │ └── TestDox │ │ │ │ │ ├── Html.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Migration │ │ │ │ ├── MigrationBuilder.php │ │ │ │ ├── MigrationException.php │ │ │ │ ├── Migrations │ │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ │ ├── LogToReportMigration.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ │ ├── RemoveListeners.php │ │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ │ ├── RemoveRegisterMockObjectsFromTestArgumentsRecursivelyAttribute.php │ │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ │ ├── ReplaceRestrictDeprecationsWithIgnoreDeprecations.php │ │ │ │ │ └── UpdateSchemaLocation.php │ │ │ │ ├── Migrator.php │ │ │ │ └── SnapshotNodeList.php │ │ │ │ ├── PHPUnit.php │ │ │ │ ├── SchemaDetector │ │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ │ ├── SchemaDetectionResult.php │ │ │ │ ├── SchemaDetector.php │ │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ │ ├── SchemaFinder.php │ │ │ │ ├── TestSuiteMapper.php │ │ │ │ └── Validator │ │ │ │ ├── ValidationResult.php │ │ │ │ └── Validator.php │ │ ├── Exception │ │ │ ├── CannotOpenSocketException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidSocketException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── Output │ │ │ ├── Default │ │ │ │ ├── ProgressPrinter │ │ │ │ │ ├── ProgressPrinter.php │ │ │ │ │ └── Subscriber │ │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ ├── ResultPrinter.php │ │ │ │ └── UnexpectedOutputPrinter.php │ │ │ ├── Facade.php │ │ │ ├── Printer │ │ │ │ ├── DefaultPrinter.php │ │ │ │ ├── NullPrinter.php │ │ │ │ └── Printer.php │ │ │ ├── SummaryPrinter.php │ │ │ └── TestDox │ │ │ │ └── ResultPrinter.php │ │ ├── ShellExitCodeCalculator.php │ │ ├── TestRunner.php │ │ └── TestSuiteFilterProcessor.php │ │ └── Util │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidDirectoryException.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidVersionOperatorException.php │ │ ├── PhpProcessException.php │ │ └── XmlException.php │ │ ├── ExcludeList.php │ │ ├── Exporter.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── Http │ │ ├── Downloader.php │ │ └── PhpDownloader.php │ │ ├── Json.php │ │ ├── PHP │ │ ├── DefaultJobRunner.php │ │ ├── Job.php │ │ ├── JobRunner.php │ │ ├── JobRunnerRegistry.php │ │ └── Result.php │ │ ├── Reflection.php │ │ ├── Test.php │ │ ├── ThrowableToStringMapper.php │ │ ├── VersionComparisonOperator.php │ │ └── Xml │ │ ├── Loader.php │ │ └── Xml.php │ ├── psr │ ├── cache │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ ├── clock │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── ClockInterface.php │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── event-dispatcher │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ ├── link │ │ ├── .editorconfig │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EvolvableLinkInterface.php │ │ │ ├── EvolvableLinkProviderInterface.php │ │ │ ├── LinkInterface.php │ │ │ └── LinkProviderInterface.php │ └── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php │ ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FileUnit.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── EnumerationComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumberComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ ├── TypeComparator.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── complexity │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Complexity │ │ │ ├── Complexity.php │ │ │ ├── ComplexityCollection.php │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── Visitor │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ ├── diff │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ ├── environment │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Enumerator.php │ ├── object-reflector │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Context.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── type │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ └── version │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── staabm │ └── side-effects-detector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ ├── SideEffect.php │ │ ├── SideEffectsDetector.php │ │ └── functionMetadata.php │ ├── symfony │ ├── asset-mapper │ │ ├── AssetMapper.php │ │ ├── AssetMapperCompiler.php │ │ ├── AssetMapperDevServerSubscriber.php │ │ ├── AssetMapperInterface.php │ │ ├── AssetMapperRepository.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── AssetMapperCompileCommand.php │ │ │ ├── DebugAssetMapperCommand.php │ │ │ ├── ImportMapAuditCommand.php │ │ │ ├── ImportMapInstallCommand.php │ │ │ ├── ImportMapOutdatedCommand.php │ │ │ ├── ImportMapRemoveCommand.php │ │ │ ├── ImportMapRequireCommand.php │ │ │ ├── ImportMapUpdateCommand.php │ │ │ └── VersionProblemCommandTrait.php │ │ ├── CompiledAssetMapperConfigReader.php │ │ ├── Compiler │ │ │ ├── AssetCompilerInterface.php │ │ │ ├── CssAssetUrlCompiler.php │ │ │ ├── JavaScriptImportPathCompiler.php │ │ │ └── SourceMappingUrlsCompiler.php │ │ ├── Event │ │ │ └── PreAssetsCompileEvent.php │ │ ├── Exception │ │ │ ├── CircularAssetsException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ │ ├── Factory │ │ │ ├── CachedMappedAssetFactory.php │ │ │ ├── MappedAssetFactory.php │ │ │ └── MappedAssetFactoryInterface.php │ │ ├── ImportMap │ │ │ ├── ImportMapAuditor.php │ │ │ ├── ImportMapConfigReader.php │ │ │ ├── ImportMapEntries.php │ │ │ ├── ImportMapEntry.php │ │ │ ├── ImportMapGenerator.php │ │ │ ├── ImportMapManager.php │ │ │ ├── ImportMapPackageAudit.php │ │ │ ├── ImportMapPackageAuditVulnerability.php │ │ │ ├── ImportMapRenderer.php │ │ │ ├── ImportMapType.php │ │ │ ├── ImportMapUpdateChecker.php │ │ │ ├── ImportMapVersionChecker.php │ │ │ ├── JavaScriptImport.php │ │ │ ├── PackageRequireOptions.php │ │ │ ├── PackageUpdateInfo.php │ │ │ ├── PackageVersionProblem.php │ │ │ ├── RemotePackageDownloader.php │ │ │ ├── RemotePackageStorage.php │ │ │ └── Resolver │ │ │ │ ├── JsDelivrEsmResolver.php │ │ │ │ ├── PackageResolverInterface.php │ │ │ │ └── ResolvedImportMapPackage.php │ │ ├── LICENSE │ │ ├── MappedAsset.php │ │ ├── MapperAwareAssetPackage.php │ │ ├── Path │ │ │ ├── LocalPublicAssetsFilesystem.php │ │ │ ├── PublicAssetsFilesystemInterface.php │ │ │ ├── PublicAssetsPathResolver.php │ │ │ └── PublicAssetsPathResolverInterface.php │ │ ├── README.md │ │ └── composer.json │ ├── asset │ │ ├── CHANGELOG.md │ │ ├── Context │ │ │ ├── ContextInterface.php │ │ │ ├── NullContext.php │ │ │ └── RequestStackContext.php │ │ ├── Exception │ │ │ ├── AssetNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ │ ├── LICENSE │ │ ├── Package.php │ │ ├── PackageInterface.php │ │ ├── Packages.php │ │ ├── PathPackage.php │ │ ├── README.md │ │ ├── UrlPackage.php │ │ ├── VersionStrategy │ │ │ ├── EmptyVersionStrategy.php │ │ │ ├── JsonManifestVersionStrategy.php │ │ │ ├── StaticVersionStrategy.php │ │ │ └── VersionStrategyInterface.php │ │ └── composer.json │ ├── browser-kit │ │ ├── AbstractBrowser.php │ │ ├── CHANGELOG.md │ │ ├── Cookie.php │ │ ├── CookieJar.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── JsonException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnexpectedValueException.php │ │ ├── History.php │ │ ├── HttpBrowser.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── BrowserCookieValueSame.php │ │ │ │ └── BrowserHasCookie.php │ │ └── composer.json │ ├── cache-contracts │ │ ├── CHANGELOG.md │ │ ├── CacheInterface.php │ │ ├── CacheTrait.php │ │ ├── CallbackInterface.php │ │ ├── ItemInterface.php │ │ ├── LICENSE │ │ ├── NamespacedPoolInterface.php │ │ ├── README.md │ │ ├── TagAwareCacheInterface.php │ │ └── composer.json │ ├── cache │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AbstractTagAwareAdapter.php │ │ │ ├── AdapterInterface.php │ │ │ ├── ApcuAdapter.php │ │ │ ├── ArrayAdapter.php │ │ │ ├── ChainAdapter.php │ │ │ ├── CouchbaseBucketAdapter.php │ │ │ ├── CouchbaseCollectionAdapter.php │ │ │ ├── DoctrineDbalAdapter.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemTagAwareAdapter.php │ │ │ ├── MemcachedAdapter.php │ │ │ ├── NullAdapter.php │ │ │ ├── ParameterNormalizer.php │ │ │ ├── PdoAdapter.php │ │ │ ├── PhpArrayAdapter.php │ │ │ ├── PhpFilesAdapter.php │ │ │ ├── ProxyAdapter.php │ │ │ ├── Psr16Adapter.php │ │ │ ├── RedisAdapter.php │ │ │ ├── RedisTagAwareAdapter.php │ │ │ ├── TagAwareAdapter.php │ │ │ ├── TagAwareAdapterInterface.php │ │ │ ├── TraceableAdapter.php │ │ │ └── TraceableTagAwareAdapter.php │ │ ├── CHANGELOG.md │ │ ├── CacheItem.php │ │ ├── DataCollector │ │ │ └── CacheDataCollector.php │ │ ├── DependencyInjection │ │ │ ├── CacheCollectorPass.php │ │ │ ├── CachePoolClearerPass.php │ │ │ ├── CachePoolPass.php │ │ │ └── CachePoolPrunerPass.php │ │ ├── Exception │ │ │ ├── CacheException.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── LogicException.php │ │ ├── LICENSE │ │ ├── LockRegistry.php │ │ ├── Marshaller │ │ │ ├── DefaultMarshaller.php │ │ │ ├── DeflateMarshaller.php │ │ │ ├── MarshallerInterface.php │ │ │ ├── SodiumMarshaller.php │ │ │ └── TagAwareMarshaller.php │ │ ├── Messenger │ │ │ ├── EarlyExpirationDispatcher.php │ │ │ ├── EarlyExpirationHandler.php │ │ │ └── EarlyExpirationMessage.php │ │ ├── PruneableInterface.php │ │ ├── Psr16Cache.php │ │ ├── README.md │ │ ├── ResettableInterface.php │ │ ├── Traits │ │ │ ├── AbstractAdapterTrait.php │ │ │ ├── ContractsTrait.php │ │ │ ├── FilesystemCommonTrait.php │ │ │ ├── FilesystemTrait.php │ │ │ ├── ProxyTrait.php │ │ │ ├── Redis5Proxy.php │ │ │ ├── Redis6Proxy.php │ │ │ ├── Redis6ProxyTrait.php │ │ │ ├── RedisCluster5Proxy.php │ │ │ ├── RedisCluster6Proxy.php │ │ │ ├── RedisCluster6ProxyTrait.php │ │ │ ├── RedisClusterNodeProxy.php │ │ │ ├── RedisClusterProxy.php │ │ │ ├── RedisProxy.php │ │ │ ├── RedisTrait.php │ │ │ ├── Relay │ │ │ │ ├── BgsaveTrait.php │ │ │ │ ├── CopyTrait.php │ │ │ │ ├── FtTrait.php │ │ │ │ ├── GeosearchTrait.php │ │ │ │ ├── GetWithMetaTrait.php │ │ │ │ ├── GetrangeTrait.php │ │ │ │ ├── HsetTrait.php │ │ │ │ ├── IsTrackedTrait.php │ │ │ │ ├── MoveTrait.php │ │ │ │ ├── NullableReturnTrait.php │ │ │ │ ├── PfcountTrait.php │ │ │ │ ├── Relay11Trait.php │ │ │ │ └── SwapdbTrait.php │ │ │ ├── RelayProxy.php │ │ │ ├── RelayProxyTrait.php │ │ │ └── ValueWrapper.php │ │ └── composer.json │ ├── clock │ │ ├── CHANGELOG.md │ │ ├── Clock.php │ │ ├── ClockAwareTrait.php │ │ ├── ClockInterface.php │ │ ├── DatePoint.php │ │ ├── LICENSE │ │ ├── MockClock.php │ │ ├── MonotonicClock.php │ │ ├── NativeClock.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── now.php │ │ ├── Test │ │ │ └── ClockSensitiveTrait.php │ │ └── composer.json │ ├── config │ │ ├── Builder │ │ │ ├── ClassBuilder.php │ │ │ ├── ConfigBuilderGenerator.php │ │ │ ├── ConfigBuilderGeneratorInterface.php │ │ │ ├── ConfigBuilderInterface.php │ │ │ ├── Method.php │ │ │ └── Property.php │ │ ├── CHANGELOG.md │ │ ├── ConfigCache.php │ │ ├── ConfigCacheFactory.php │ │ ├── ConfigCacheFactoryInterface.php │ │ ├── ConfigCacheInterface.php │ │ ├── Definition │ │ │ ├── ArrayNode.php │ │ │ ├── BaseNode.php │ │ │ ├── BooleanNode.php │ │ │ ├── Builder │ │ │ │ ├── ArrayNodeDefinition.php │ │ │ │ ├── BooleanNodeDefinition.php │ │ │ │ ├── BuilderAwareInterface.php │ │ │ │ ├── EnumNodeDefinition.php │ │ │ │ ├── ExprBuilder.php │ │ │ │ ├── FloatNodeDefinition.php │ │ │ │ ├── IntegerNodeDefinition.php │ │ │ │ ├── MergeBuilder.php │ │ │ │ ├── NodeBuilder.php │ │ │ │ ├── NodeDefinition.php │ │ │ │ ├── NodeParentInterface.php │ │ │ │ ├── NormalizationBuilder.php │ │ │ │ ├── NumericNodeDefinition.php │ │ │ │ ├── ParentNodeDefinitionInterface.php │ │ │ │ ├── ScalarNodeDefinition.php │ │ │ │ ├── TreeBuilder.php │ │ │ │ ├── ValidationBuilder.php │ │ │ │ └── VariableNodeDefinition.php │ │ │ ├── ConfigurableInterface.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── Configurator │ │ │ │ └── DefinitionConfigurator.php │ │ │ ├── Dumper │ │ │ │ ├── XmlReferenceDumper.php │ │ │ │ └── YamlReferenceDumper.php │ │ │ ├── EnumNode.php │ │ │ ├── Exception │ │ │ │ ├── DuplicateKeyException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ForbiddenOverwriteException.php │ │ │ │ ├── InvalidConfigurationException.php │ │ │ │ ├── InvalidDefinitionException.php │ │ │ │ ├── InvalidTypeException.php │ │ │ │ └── UnsetKeyException.php │ │ │ ├── FloatNode.php │ │ │ ├── IntegerNode.php │ │ │ ├── Loader │ │ │ │ └── DefinitionFileLoader.php │ │ │ ├── NodeInterface.php │ │ │ ├── NumericNode.php │ │ │ ├── Processor.php │ │ │ ├── PrototypeNodeInterface.php │ │ │ ├── PrototypedArrayNode.php │ │ │ ├── ScalarNode.php │ │ │ └── VariableNode.php │ │ ├── Exception │ │ │ ├── FileLoaderImportCircularReferenceException.php │ │ │ ├── FileLocatorFileNotFoundException.php │ │ │ └── LoaderLoadException.php │ │ ├── FileLocator.php │ │ ├── FileLocatorInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── DelegatingLoader.php │ │ │ ├── DirectoryAwareLoaderInterface.php │ │ │ ├── FileLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── Loader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── LoaderResolver.php │ │ │ ├── LoaderResolverInterface.php │ │ │ └── ParamConfigurator.php │ │ ├── README.md │ │ ├── Resource │ │ │ ├── ClassExistenceResource.php │ │ │ ├── ComposerResource.php │ │ │ ├── DirectoryResource.php │ │ │ ├── FileExistenceResource.php │ │ │ ├── FileResource.php │ │ │ ├── GlobResource.php │ │ │ ├── ReflectionClassResource.php │ │ │ ├── ResourceInterface.php │ │ │ ├── SelfCheckingResourceChecker.php │ │ │ └── SelfCheckingResourceInterface.php │ │ ├── ResourceCheckerConfigCache.php │ │ ├── ResourceCheckerConfigCacheFactory.php │ │ ├── ResourceCheckerInterface.php │ │ ├── Util │ │ │ ├── Exception │ │ │ │ ├── InvalidXmlException.php │ │ │ │ └── XmlParsingException.php │ │ │ └── XmlUtils.php │ │ └── composer.json │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ ├── SignalableCommandInterface.php │ │ │ └── TraceableCommand.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ ├── CompletionOutputInterface.php │ │ │ │ ├── FishCompletionOutput.php │ │ │ │ └── ZshCompletionOutput.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DataCollector │ │ │ └── CommandDataCollector.php │ │ ├── Debug │ │ │ └── CliRequest.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── ReStructuredTextDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleSignalEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingInputException.php │ │ │ ├── NamespaceNotFoundException.php │ │ │ ├── RunCommandFailedException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── NullOutputFormatter.php │ │ │ ├── NullOutputFormatterStyle.php │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ ├── OutputFormatterStyleStack.php │ │ │ └── WrappableOutputFormatterInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── Dumper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── OutputWrapper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Messenger │ │ │ ├── RunCommandContext.php │ │ │ ├── RunCommandMessage.php │ │ │ └── RunCommandMessageHandler.php │ │ ├── Output │ │ │ ├── AnsiColorMode.php │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── ConsoleSectionOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ ├── StreamOutput.php │ │ │ └── TrimmedBufferOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ ├── completion.bash │ │ │ ├── completion.fish │ │ │ └── completion.zsh │ │ ├── SignalRegistry │ │ │ ├── SignalMap.php │ │ │ └── SignalRegistry.php │ │ ├── SingleCommandApplication.php │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandCompletionTester.php │ │ │ ├── CommandTester.php │ │ │ ├── Constraint │ │ │ │ └── CommandIsSuccessful.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── css-selector │ │ ├── CHANGELOG.md │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExpressionErrorException.php │ │ │ ├── InternalErrorException.php │ │ │ ├── ParseException.php │ │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── AttributeNode.php │ │ │ ├── ClassNode.php │ │ │ ├── CombinedSelectorNode.php │ │ │ ├── ElementNode.php │ │ │ ├── FunctionNode.php │ │ │ ├── HashNode.php │ │ │ ├── NegationNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── PseudoNode.php │ │ │ ├── SelectorNode.php │ │ │ └── Specificity.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── CommentHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HashHandler.php │ │ │ │ ├── IdentifierHandler.php │ │ │ │ ├── NumberHandler.php │ │ │ │ ├── StringHandler.php │ │ │ │ └── WhitespaceHandler.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ ├── Reader.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParser.php │ │ │ │ ├── ElementParser.php │ │ │ │ ├── EmptyStringParser.php │ │ │ │ └── HashParser.php │ │ │ ├── Token.php │ │ │ ├── TokenStream.php │ │ │ └── Tokenizer │ │ │ │ ├── Tokenizer.php │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── XPath │ │ │ ├── Extension │ │ │ │ ├── AbstractExtension.php │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ ├── CombinationExtension.php │ │ │ │ ├── ExtensionInterface.php │ │ │ │ ├── FunctionExtension.php │ │ │ │ ├── HtmlExtension.php │ │ │ │ ├── NodeExtension.php │ │ │ │ └── PseudoClassExtension.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorInterface.php │ │ │ └── XPathExpr.php │ │ └── composer.json │ ├── debug-bundle │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── ServerDumpPlaceholderCommand.php │ │ ├── DebugBundle.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ └── DumpDataCollectorPass.php │ │ │ ├── Configuration.php │ │ │ └── DebugExtension.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── schema │ │ │ │ │ └── debug-1.0.xsd │ │ │ │ └── services.php │ │ │ └── views │ │ │ │ └── Profiler │ │ │ │ ├── dump.html.twig │ │ │ │ └── icon.svg │ │ └── composer.json │ ├── dependency-injection │ │ ├── Alias.php │ │ ├── Argument │ │ │ ├── AbstractArgument.php │ │ │ ├── ArgumentInterface.php │ │ │ ├── BoundArgument.php │ │ │ ├── IteratorArgument.php │ │ │ ├── LazyClosure.php │ │ │ ├── ReferenceSetArgumentTrait.php │ │ │ ├── RewindableGenerator.php │ │ │ ├── ServiceClosureArgument.php │ │ │ ├── ServiceLocator.php │ │ │ ├── ServiceLocatorArgument.php │ │ │ └── TaggedIteratorArgument.php │ │ ├── Attribute │ │ │ ├── AsAlias.php │ │ │ ├── AsDecorator.php │ │ │ ├── AsTaggedItem.php │ │ │ ├── Autoconfigure.php │ │ │ ├── AutoconfigureTag.php │ │ │ ├── Autowire.php │ │ │ ├── AutowireCallable.php │ │ │ ├── AutowireDecorated.php │ │ │ ├── AutowireIterator.php │ │ │ ├── AutowireLocator.php │ │ │ ├── AutowireServiceClosure.php │ │ │ ├── Exclude.php │ │ │ ├── MapDecorated.php │ │ │ ├── TaggedIterator.php │ │ │ ├── TaggedLocator.php │ │ │ ├── Target.php │ │ │ └── When.php │ │ ├── CHANGELOG.md │ │ ├── ChildDefinition.php │ │ ├── Compiler │ │ │ ├── AbstractRecursivePass.php │ │ │ ├── AliasDeprecatedPublicServicesPass.php │ │ │ ├── AnalyzeServiceReferencesPass.php │ │ │ ├── AttributeAutoconfigurationPass.php │ │ │ ├── AutoAliasServicePass.php │ │ │ ├── AutowireAsDecoratorPass.php │ │ │ ├── AutowirePass.php │ │ │ ├── AutowireRequiredMethodsPass.php │ │ │ ├── AutowireRequiredPropertiesPass.php │ │ │ ├── CheckArgumentsValidityPass.php │ │ │ ├── CheckCircularReferencesPass.php │ │ │ ├── CheckDefinitionValidityPass.php │ │ │ ├── CheckExceptionOnInvalidReferenceBehaviorPass.php │ │ │ ├── CheckReferenceValidityPass.php │ │ │ ├── CheckTypeDeclarationsPass.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerPassInterface.php │ │ │ ├── DecoratorServicePass.php │ │ │ ├── DefinitionErrorExceptionPass.php │ │ │ ├── ExtensionCompilerPass.php │ │ │ ├── InlineServiceDefinitionsPass.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ ├── PassConfig.php │ │ │ ├── PriorityTaggedServiceTrait.php │ │ │ ├── RegisterAutoconfigureAttributesPass.php │ │ │ ├── RegisterEnvVarProcessorsPass.php │ │ │ ├── RegisterReverseContainerPass.php │ │ │ ├── RegisterServiceSubscribersPass.php │ │ │ ├── RemoveAbstractDefinitionsPass.php │ │ │ ├── RemoveBuildParametersPass.php │ │ │ ├── RemovePrivateAliasesPass.php │ │ │ ├── RemoveUnusedDefinitionsPass.php │ │ │ ├── ReplaceAliasByActualDefinitionPass.php │ │ │ ├── ResolveBindingsPass.php │ │ │ ├── ResolveChildDefinitionsPass.php │ │ │ ├── ResolveClassPass.php │ │ │ ├── ResolveDecoratorStackPass.php │ │ │ ├── ResolveEnvPlaceholdersPass.php │ │ │ ├── ResolveFactoryClassPass.php │ │ │ ├── ResolveHotPathPass.php │ │ │ ├── ResolveInstanceofConditionalsPass.php │ │ │ ├── ResolveInvalidReferencesPass.php │ │ │ ├── ResolveNamedArgumentsPass.php │ │ │ ├── ResolveNoPreloadPass.php │ │ │ ├── ResolveParameterPlaceHoldersPass.php │ │ │ ├── ResolveReferencesToAliasesPass.php │ │ │ ├── ResolveServiceSubscribersPass.php │ │ │ ├── ResolveTaggedIteratorArgumentPass.php │ │ │ ├── ServiceLocatorTagPass.php │ │ │ ├── ServiceReferenceGraph.php │ │ │ ├── ServiceReferenceGraphEdge.php │ │ │ ├── ServiceReferenceGraphNode.php │ │ │ └── ValidateEnvPlaceholdersPass.php │ │ ├── Config │ │ │ ├── ContainerParametersResource.php │ │ │ └── ContainerParametersResourceChecker.php │ │ ├── Container.php │ │ ├── ContainerAwareInterface.php │ │ ├── ContainerAwareTrait.php │ │ ├── ContainerBuilder.php │ │ ├── ContainerInterface.php │ │ ├── Definition.php │ │ ├── Dumper │ │ │ ├── Dumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── GraphvizDumper.php │ │ │ ├── PhpDumper.php │ │ │ ├── Preloader.php │ │ │ ├── XmlDumper.php │ │ │ └── YamlDumper.php │ │ ├── EnvVarLoaderInterface.php │ │ ├── EnvVarProcessor.php │ │ ├── EnvVarProcessorInterface.php │ │ ├── Exception │ │ │ ├── AutowiringFailedException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── EnvNotFoundException.php │ │ │ ├── EnvParameterException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidParameterTypeException.php │ │ │ ├── LogicException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── ParameterCircularReferenceException.php │ │ │ ├── ParameterNotFoundException.php │ │ │ ├── RuntimeException.php │ │ │ ├── ServiceCircularReferenceException.php │ │ │ └── ServiceNotFoundException.php │ │ ├── ExpressionLanguage.php │ │ ├── ExpressionLanguageProvider.php │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── ConfigurableExtensionInterface.php │ │ │ ├── ConfigurationExtensionInterface.php │ │ │ ├── Extension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── ExtensionTrait.php │ │ │ └── PrependExtensionInterface.php │ │ ├── LICENSE │ │ ├── LazyProxy │ │ │ ├── Instantiator │ │ │ │ ├── InstantiatorInterface.php │ │ │ │ ├── LazyServiceInstantiator.php │ │ │ │ └── RealServiceInstantiator.php │ │ │ ├── PhpDumper │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── LazyServiceDumper.php │ │ │ │ └── NullDumper.php │ │ │ └── ProxyHelper.php │ │ ├── Loader │ │ │ ├── ClosureLoader.php │ │ │ ├── Configurator │ │ │ │ ├── AbstractConfigurator.php │ │ │ │ ├── AbstractServiceConfigurator.php │ │ │ │ ├── AliasConfigurator.php │ │ │ │ ├── ClosureReferenceConfigurator.php │ │ │ │ ├── ContainerConfigurator.php │ │ │ │ ├── DefaultsConfigurator.php │ │ │ │ ├── EnvConfigurator.php │ │ │ │ ├── FromCallableConfigurator.php │ │ │ │ ├── InlineServiceConfigurator.php │ │ │ │ ├── InstanceofConfigurator.php │ │ │ │ ├── ParametersConfigurator.php │ │ │ │ ├── PrototypeConfigurator.php │ │ │ │ ├── ReferenceConfigurator.php │ │ │ │ ├── ServiceConfigurator.php │ │ │ │ ├── ServicesConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AbstractTrait.php │ │ │ │ │ ├── ArgumentTrait.php │ │ │ │ │ ├── AutoconfigureTrait.php │ │ │ │ │ ├── AutowireTrait.php │ │ │ │ │ ├── BindTrait.php │ │ │ │ │ ├── CallTrait.php │ │ │ │ │ ├── ClassTrait.php │ │ │ │ │ ├── ConfiguratorTrait.php │ │ │ │ │ ├── ConstructorTrait.php │ │ │ │ │ ├── DecorateTrait.php │ │ │ │ │ ├── DeprecateTrait.php │ │ │ │ │ ├── FactoryTrait.php │ │ │ │ │ ├── FileTrait.php │ │ │ │ │ ├── FromCallableTrait.php │ │ │ │ │ ├── LazyTrait.php │ │ │ │ │ ├── ParentTrait.php │ │ │ │ │ ├── PropertyTrait.php │ │ │ │ │ ├── PublicTrait.php │ │ │ │ │ ├── ShareTrait.php │ │ │ │ │ ├── SyntheticTrait.php │ │ │ │ │ └── TagTrait.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── IniFileLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── services │ │ │ │ └── services-1.0.xsd │ │ ├── Parameter.php │ │ ├── ParameterBag │ │ │ ├── ContainerBag.php │ │ │ ├── ContainerBagInterface.php │ │ │ ├── EnvPlaceholderParameterBag.php │ │ │ ├── FrozenParameterBag.php │ │ │ ├── ParameterBag.php │ │ │ └── ParameterBagInterface.php │ │ ├── README.md │ │ ├── Reference.php │ │ ├── ReverseContainer.php │ │ ├── ServiceLocator.php │ │ ├── TaggedContainerInterface.php │ │ ├── TypedReference.php │ │ ├── Variable.php │ │ └── composer.json │ ├── deprecation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── doctrine-bridge │ │ ├── ArgumentResolver │ │ │ └── EntityValueResolver.php │ │ ├── Attribute │ │ │ └── MapEntity.php │ │ ├── CHANGELOG.md │ │ ├── CacheWarmer │ │ │ └── ProxyCacheWarmer.php │ │ ├── ContainerAwareEventManager.php │ │ ├── DataCollector │ │ │ ├── DoctrineDataCollector.php │ │ │ └── ObjectParameter.php │ │ ├── DataFixtures │ │ │ ├── AddFixtureImplementation.php │ │ │ └── ContainerAwareLoader.php │ │ ├── DependencyInjection │ │ │ ├── AbstractDoctrineExtension.php │ │ │ ├── CompilerPass │ │ │ │ ├── DoctrineValidationPass.php │ │ │ │ ├── RegisterEventListenersAndSubscribersPass.php │ │ │ │ ├── RegisterMappingsPass.php │ │ │ │ └── RegisterUidTypePass.php │ │ │ └── Security │ │ │ │ └── UserProvider │ │ │ │ └── EntityFactory.php │ │ ├── Form │ │ │ ├── ChoiceList │ │ │ │ ├── DoctrineChoiceLoader.php │ │ │ │ ├── EntityLoaderInterface.php │ │ │ │ ├── IdReader.php │ │ │ │ └── ORMQueryBuilderLoader.php │ │ │ ├── DataTransformer │ │ │ │ └── CollectionToArrayTransformer.php │ │ │ ├── DoctrineOrmExtension.php │ │ │ ├── DoctrineOrmTypeGuesser.php │ │ │ ├── EventListener │ │ │ │ └── MergeDoctrineCollectionListener.php │ │ │ └── Type │ │ │ │ ├── DoctrineType.php │ │ │ │ └── EntityType.php │ │ ├── IdGenerator │ │ │ ├── UlidGenerator.php │ │ │ └── UuidGenerator.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── DbalLogger.php │ │ ├── ManagerRegistry.php │ │ ├── Messenger │ │ │ ├── AbstractDoctrineMiddleware.php │ │ │ ├── DoctrineClearEntityManagerWorkerSubscriber.php │ │ │ ├── DoctrineCloseConnectionMiddleware.php │ │ │ ├── DoctrineOpenTransactionLoggerMiddleware.php │ │ │ ├── DoctrinePingConnectionMiddleware.php │ │ │ └── DoctrineTransactionMiddleware.php │ │ ├── Middleware │ │ │ └── Debug │ │ │ │ ├── Connection.php │ │ │ │ ├── DBAL3 │ │ │ │ ├── Connection.php │ │ │ │ └── Statement.php │ │ │ │ ├── DebugDataHolder.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Query.php │ │ │ │ └── Statement.php │ │ ├── PropertyInfo │ │ │ └── DoctrineExtractor.php │ │ ├── README.md │ │ ├── SchemaListener │ │ │ ├── AbstractSchemaListener.php │ │ │ ├── DoctrineDbalCacheAdapterSchemaListener.php │ │ │ ├── DoctrineDbalCacheAdapterSchemaSubscriber.php │ │ │ ├── LockStoreSchemaListener.php │ │ │ ├── MessengerTransportDoctrineSchemaListener.php │ │ │ ├── MessengerTransportDoctrineSchemaSubscriber.php │ │ │ ├── PdoSessionHandlerSchemaListener.php │ │ │ ├── RememberMeTokenProviderDoctrineSchemaListener.php │ │ │ └── RememberMeTokenProviderDoctrineSchemaSubscriber.php │ │ ├── Security │ │ │ ├── RememberMe │ │ │ │ └── DoctrineTokenProvider.php │ │ │ └── User │ │ │ │ ├── EntityUserProvider.php │ │ │ │ └── UserLoaderInterface.php │ │ ├── Types │ │ │ ├── AbstractUidType.php │ │ │ ├── UlidType.php │ │ │ └── UuidType.php │ │ ├── Validator │ │ │ ├── Constraints │ │ │ │ ├── UniqueEntity.php │ │ │ │ └── UniqueEntityValidator.php │ │ │ ├── DoctrineInitializer.php │ │ │ └── DoctrineLoader.php │ │ └── composer.json │ ├── doctrine-messenger │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Transport │ │ │ ├── Connection.php │ │ │ ├── DoctrineReceivedStamp.php │ │ │ ├── DoctrineReceiver.php │ │ │ ├── DoctrineSender.php │ │ │ ├── DoctrineTransport.php │ │ │ ├── DoctrineTransportFactory.php │ │ │ └── PostgreSqlConnection.php │ │ └── composer.json │ ├── dom-crawler │ │ ├── AbstractUriElement.php │ │ ├── CHANGELOG.md │ │ ├── Crawler.php │ │ ├── Field │ │ │ ├── ChoiceFormField.php │ │ │ ├── FileFormField.php │ │ │ ├── FormField.php │ │ │ ├── InputFormField.php │ │ │ └── TextareaFormField.php │ │ ├── Form.php │ │ ├── FormFieldRegistry.php │ │ ├── Image.php │ │ ├── LICENSE │ │ ├── Link.php │ │ ├── README.md │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── CrawlerAnySelectorTextContains.php │ │ │ │ ├── CrawlerAnySelectorTextSame.php │ │ │ │ ├── CrawlerSelectorAttributeValueSame.php │ │ │ │ ├── CrawlerSelectorCount.php │ │ │ │ ├── CrawlerSelectorExists.php │ │ │ │ ├── CrawlerSelectorTextContains.php │ │ │ │ └── CrawlerSelectorTextSame.php │ │ ├── UriResolver.php │ │ └── composer.json │ ├── dotenv │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── DebugCommand.php │ │ │ └── DotenvDumpCommand.php │ │ ├── Dotenv.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── FormatException.php │ │ │ ├── FormatExceptionContext.php │ │ │ └── PathException.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── error-handler │ │ ├── BufferingLogger.php │ │ ├── CHANGELOG.md │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── Error │ │ │ ├── ClassNotFoundError.php │ │ │ ├── FatalError.php │ │ │ ├── OutOfMemoryError.php │ │ │ ├── UndefinedFunctionError.php │ │ │ └── UndefinedMethodError.php │ │ ├── ErrorEnhancer │ │ │ ├── ClassNotFoundErrorEnhancer.php │ │ │ ├── ErrorEnhancerInterface.php │ │ │ ├── UndefinedFunctionErrorEnhancer.php │ │ │ └── UndefinedMethodErrorEnhancer.php │ │ ├── ErrorHandler.php │ │ ├── ErrorRenderer │ │ │ ├── CliErrorRenderer.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── FileLinkFormatter.php │ │ │ ├── HtmlErrorRenderer.php │ │ │ └── SerializerErrorRenderer.php │ │ ├── Exception │ │ │ ├── FlattenException.php │ │ │ └── SilencedErrorContext.php │ │ ├── Internal │ │ │ └── TentativeTypes.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── error.css │ │ │ │ │ ├── exception.css │ │ │ │ │ └── exception_full.css │ │ │ │ ├── images │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ ├── icon-book.svg │ │ │ │ │ ├── icon-copy.svg │ │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ │ ├── icon-minus-square.svg │ │ │ │ │ ├── icon-plus-square-o.svg │ │ │ │ │ ├── icon-plus-square.svg │ │ │ │ │ ├── icon-support.svg │ │ │ │ │ ├── symfony-ghost.svg.php │ │ │ │ │ └── symfony-logo.svg │ │ │ │ └── js │ │ │ │ │ └── exception.js │ │ │ ├── bin │ │ │ │ ├── extract-tentative-return-types.php │ │ │ │ └── patch-type-declarations │ │ │ └── views │ │ │ │ ├── error.html.php │ │ │ │ ├── exception.html.php │ │ │ │ ├── exception_full.html.php │ │ │ │ ├── logs.html.php │ │ │ │ ├── trace.html.php │ │ │ │ ├── traces.html.php │ │ │ │ └── traces_text.html.php │ │ ├── ThrowableUtils.php │ │ └── composer.json │ ├── event-dispatcher-contracts │ │ ├── CHANGELOG.md │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── event-dispatcher │ │ ├── Attribute │ │ │ └── AsEventListener.php │ │ ├── CHANGELOG.md │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ ├── AddEventAliasesPass.php │ │ │ └── RegisterListenersPass.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── expression-language │ │ ├── CHANGELOG.md │ │ ├── Compiler.php │ │ ├── Expression.php │ │ ├── ExpressionFunction.php │ │ ├── ExpressionFunctionProviderInterface.php │ │ ├── ExpressionLanguage.php │ │ ├── LICENSE │ │ ├── Lexer.php │ │ ├── Node │ │ │ ├── ArgumentsNode.php │ │ │ ├── ArrayNode.php │ │ │ ├── BinaryNode.php │ │ │ ├── ConditionalNode.php │ │ │ ├── ConstantNode.php │ │ │ ├── FunctionNode.php │ │ │ ├── GetAttrNode.php │ │ │ ├── NameNode.php │ │ │ ├── Node.php │ │ │ ├── NullCoalesceNode.php │ │ │ └── UnaryNode.php │ │ ├── ParsedExpression.php │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── generate_operator_regex.php │ │ ├── SerializedParsedExpression.php │ │ ├── SyntaxError.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── composer.json │ ├── filesystem │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── IOException.php │ │ │ ├── IOExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Filesystem.php │ │ ├── LICENSE │ │ ├── Path.php │ │ ├── README.md │ │ └── composer.json │ ├── finder │ │ ├── CHANGELOG.md │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── DirectoryNotFoundException.php │ │ ├── Finder.php │ │ ├── Gitignore.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── LazyIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ ├── SizeRangeFilterIterator.php │ │ │ ├── SortableIterator.php │ │ │ └── VcsIgnoredFilterIterator.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SplFileInfo.php │ │ └── composer.json │ ├── flex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Command │ │ │ ├── DumpEnvCommand.php │ │ │ ├── InstallRecipesCommand.php │ │ │ ├── RecipesCommand.php │ │ │ └── UpdateRecipesCommand.php │ │ │ ├── Configurator.php │ │ │ ├── Configurator │ │ │ ├── AbstractConfigurator.php │ │ │ ├── AddLinesConfigurator.php │ │ │ ├── BundlesConfigurator.php │ │ │ ├── ComposerCommandsConfigurator.php │ │ │ ├── ComposerScriptsConfigurator.php │ │ │ ├── ContainerConfigurator.php │ │ │ ├── CopyFromPackageConfigurator.php │ │ │ ├── CopyFromRecipeConfigurator.php │ │ │ ├── DockerComposeConfigurator.php │ │ │ ├── DockerfileConfigurator.php │ │ │ ├── DotenvConfigurator.php │ │ │ ├── EnvConfigurator.php │ │ │ ├── GitignoreConfigurator.php │ │ │ └── MakefileConfigurator.php │ │ │ ├── Downloader.php │ │ │ ├── Event │ │ │ └── UpdateEvent.php │ │ │ ├── Flex.php │ │ │ ├── GithubApi.php │ │ │ ├── InformationOperation.php │ │ │ ├── Lock.php │ │ │ ├── Options.php │ │ │ ├── PackageFilter.php │ │ │ ├── PackageJsonSynchronizer.php │ │ │ ├── PackageResolver.php │ │ │ ├── Path.php │ │ │ ├── Recipe.php │ │ │ ├── Response.php │ │ │ ├── ScriptExecutor.php │ │ │ ├── SymfonyBundle.php │ │ │ ├── SymfonyPackInstaller.php │ │ │ ├── Unpack │ │ │ ├── Operation.php │ │ │ └── Result.php │ │ │ ├── Unpacker.php │ │ │ └── Update │ │ │ ├── DiffHelper.php │ │ │ ├── RecipePatch.php │ │ │ ├── RecipePatcher.php │ │ │ └── RecipeUpdate.php │ ├── form │ │ ├── AbstractExtension.php │ │ ├── AbstractRendererEngine.php │ │ ├── AbstractType.php │ │ ├── AbstractTypeExtension.php │ │ ├── Button.php │ │ ├── ButtonBuilder.php │ │ ├── ButtonTypeInterface.php │ │ ├── CHANGELOG.md │ │ ├── CallbackTransformer.php │ │ ├── ChoiceList │ │ │ ├── ArrayChoiceList.php │ │ │ ├── ChoiceList.php │ │ │ ├── ChoiceListInterface.php │ │ │ ├── Factory │ │ │ │ ├── Cache │ │ │ │ │ ├── AbstractStaticOption.php │ │ │ │ │ ├── ChoiceAttr.php │ │ │ │ │ ├── ChoiceFieldName.php │ │ │ │ │ ├── ChoiceFilter.php │ │ │ │ │ ├── ChoiceLabel.php │ │ │ │ │ ├── ChoiceLoader.php │ │ │ │ │ ├── ChoiceTranslationParameters.php │ │ │ │ │ ├── ChoiceValue.php │ │ │ │ │ ├── GroupBy.php │ │ │ │ │ └── PreferredChoice.php │ │ │ │ ├── CachingFactoryDecorator.php │ │ │ │ ├── ChoiceListFactoryInterface.php │ │ │ │ ├── DefaultChoiceListFactory.php │ │ │ │ └── PropertyAccessDecorator.php │ │ │ ├── LazyChoiceList.php │ │ │ ├── Loader │ │ │ │ ├── AbstractChoiceLoader.php │ │ │ │ ├── CallbackChoiceLoader.php │ │ │ │ ├── ChoiceLoaderInterface.php │ │ │ │ ├── FilterChoiceLoaderDecorator.php │ │ │ │ └── IntlCallbackChoiceLoader.php │ │ │ └── View │ │ │ │ ├── ChoiceGroupView.php │ │ │ │ ├── ChoiceListView.php │ │ │ │ └── ChoiceView.php │ │ ├── ClearableErrorsInterface.php │ │ ├── ClickableInterface.php │ │ ├── Command │ │ │ └── DebugCommand.php │ │ ├── Console │ │ │ ├── Descriptor │ │ │ │ ├── Descriptor.php │ │ │ │ ├── JsonDescriptor.php │ │ │ │ └── TextDescriptor.php │ │ │ └── Helper │ │ │ │ └── DescriptorHelper.php │ │ ├── DataAccessorInterface.php │ │ ├── DataMapperInterface.php │ │ ├── DataTransformerInterface.php │ │ ├── DependencyInjection │ │ │ └── FormPass.php │ │ ├── Event │ │ │ ├── PostSetDataEvent.php │ │ │ ├── PostSubmitEvent.php │ │ │ ├── PreSetDataEvent.php │ │ │ ├── PreSubmitEvent.php │ │ │ └── SubmitEvent.php │ │ ├── Exception │ │ │ ├── AccessException.php │ │ │ ├── AlreadySubmittedException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── ErrorMappingException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidConfigurationException.php │ │ │ ├── LogicException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── RuntimeException.php │ │ │ ├── StringCastException.php │ │ │ ├── TransformationFailedException.php │ │ │ └── UnexpectedTypeException.php │ │ ├── Extension │ │ │ ├── Core │ │ │ │ ├── CoreExtension.php │ │ │ │ ├── DataAccessor │ │ │ │ │ ├── CallbackAccessor.php │ │ │ │ │ ├── ChainAccessor.php │ │ │ │ │ └── PropertyPathAccessor.php │ │ │ │ ├── DataMapper │ │ │ │ │ ├── CheckboxListMapper.php │ │ │ │ │ ├── DataMapper.php │ │ │ │ │ └── RadioListMapper.php │ │ │ │ ├── DataTransformer │ │ │ │ │ ├── ArrayToPartsTransformer.php │ │ │ │ │ ├── BaseDateTimeTransformer.php │ │ │ │ │ ├── BooleanToStringTransformer.php │ │ │ │ │ ├── ChoiceToValueTransformer.php │ │ │ │ │ ├── ChoicesToValuesTransformer.php │ │ │ │ │ ├── DataTransformerChain.php │ │ │ │ │ ├── DateIntervalToArrayTransformer.php │ │ │ │ │ ├── DateIntervalToStringTransformer.php │ │ │ │ │ ├── DateTimeImmutableToDateTimeTransformer.php │ │ │ │ │ ├── DateTimeToArrayTransformer.php │ │ │ │ │ ├── DateTimeToHtml5LocalDateTimeTransformer.php │ │ │ │ │ ├── DateTimeToLocalizedStringTransformer.php │ │ │ │ │ ├── DateTimeToRfc3339Transformer.php │ │ │ │ │ ├── DateTimeToStringTransformer.php │ │ │ │ │ ├── DateTimeToTimestampTransformer.php │ │ │ │ │ ├── DateTimeZoneToStringTransformer.php │ │ │ │ │ ├── IntegerToLocalizedStringTransformer.php │ │ │ │ │ ├── IntlTimeZoneToStringTransformer.php │ │ │ │ │ ├── MoneyToLocalizedStringTransformer.php │ │ │ │ │ ├── NumberToLocalizedStringTransformer.php │ │ │ │ │ ├── PercentToLocalizedStringTransformer.php │ │ │ │ │ ├── StringToFloatTransformer.php │ │ │ │ │ ├── UlidToStringTransformer.php │ │ │ │ │ ├── UuidToStringTransformer.php │ │ │ │ │ ├── ValueToDuplicatesTransformer.php │ │ │ │ │ └── WeekToArrayTransformer.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── FixUrlProtocolListener.php │ │ │ │ │ ├── MergeCollectionListener.php │ │ │ │ │ ├── ResizeFormListener.php │ │ │ │ │ ├── TransformationFailureListener.php │ │ │ │ │ └── TrimListener.php │ │ │ │ └── Type │ │ │ │ │ ├── BaseType.php │ │ │ │ │ ├── BirthdayType.php │ │ │ │ │ ├── ButtonType.php │ │ │ │ │ ├── CheckboxType.php │ │ │ │ │ ├── ChoiceType.php │ │ │ │ │ ├── CollectionType.php │ │ │ │ │ ├── ColorType.php │ │ │ │ │ ├── CountryType.php │ │ │ │ │ ├── CurrencyType.php │ │ │ │ │ ├── DateIntervalType.php │ │ │ │ │ ├── DateTimeType.php │ │ │ │ │ ├── DateType.php │ │ │ │ │ ├── EmailType.php │ │ │ │ │ ├── EnumType.php │ │ │ │ │ ├── FileType.php │ │ │ │ │ ├── FormType.php │ │ │ │ │ ├── HiddenType.php │ │ │ │ │ ├── IntegerType.php │ │ │ │ │ ├── LanguageType.php │ │ │ │ │ ├── LocaleType.php │ │ │ │ │ ├── MoneyType.php │ │ │ │ │ ├── NumberType.php │ │ │ │ │ ├── PasswordType.php │ │ │ │ │ ├── PercentType.php │ │ │ │ │ ├── RadioType.php │ │ │ │ │ ├── RangeType.php │ │ │ │ │ ├── RepeatedType.php │ │ │ │ │ ├── ResetType.php │ │ │ │ │ ├── SearchType.php │ │ │ │ │ ├── SubmitType.php │ │ │ │ │ ├── TelType.php │ │ │ │ │ ├── TextType.php │ │ │ │ │ ├── TextareaType.php │ │ │ │ │ ├── TimeType.php │ │ │ │ │ ├── TimezoneType.php │ │ │ │ │ ├── TransformationFailureExtension.php │ │ │ │ │ ├── UlidType.php │ │ │ │ │ ├── UrlType.php │ │ │ │ │ ├── UuidType.php │ │ │ │ │ └── WeekType.php │ │ │ ├── Csrf │ │ │ │ ├── CsrfExtension.php │ │ │ │ ├── EventListener │ │ │ │ │ └── CsrfValidationListener.php │ │ │ │ └── Type │ │ │ │ │ └── FormTypeCsrfExtension.php │ │ │ ├── DataCollector │ │ │ │ ├── DataCollectorExtension.php │ │ │ │ ├── EventListener │ │ │ │ │ └── DataCollectorListener.php │ │ │ │ ├── FormDataCollector.php │ │ │ │ ├── FormDataCollectorInterface.php │ │ │ │ ├── FormDataExtractor.php │ │ │ │ ├── FormDataExtractorInterface.php │ │ │ │ ├── Proxy │ │ │ │ │ ├── ResolvedTypeDataCollectorProxy.php │ │ │ │ │ └── ResolvedTypeFactoryDataCollectorProxy.php │ │ │ │ └── Type │ │ │ │ │ └── DataCollectorTypeExtension.php │ │ │ ├── DependencyInjection │ │ │ │ └── DependencyInjectionExtension.php │ │ │ ├── HtmlSanitizer │ │ │ │ ├── HtmlSanitizerExtension.php │ │ │ │ └── Type │ │ │ │ │ └── TextTypeHtmlSanitizerExtension.php │ │ │ ├── HttpFoundation │ │ │ │ ├── HttpFoundationExtension.php │ │ │ │ ├── HttpFoundationRequestHandler.php │ │ │ │ └── Type │ │ │ │ │ └── FormTypeHttpFoundationExtension.php │ │ │ ├── PasswordHasher │ │ │ │ ├── EventListener │ │ │ │ │ └── PasswordHasherListener.php │ │ │ │ ├── PasswordHasherExtension.php │ │ │ │ └── Type │ │ │ │ │ ├── FormTypePasswordHasherExtension.php │ │ │ │ │ └── PasswordTypePasswordHasherExtension.php │ │ │ └── Validator │ │ │ │ ├── Constraints │ │ │ │ ├── Form.php │ │ │ │ └── FormValidator.php │ │ │ │ ├── EventListener │ │ │ │ └── ValidationListener.php │ │ │ │ ├── Type │ │ │ │ ├── BaseValidatorExtension.php │ │ │ │ ├── FormTypeValidatorExtension.php │ │ │ │ ├── RepeatedTypeValidatorExtension.php │ │ │ │ ├── SubmitTypeValidatorExtension.php │ │ │ │ └── UploadValidatorExtension.php │ │ │ │ ├── ValidatorExtension.php │ │ │ │ ├── ValidatorTypeGuesser.php │ │ │ │ └── ViolationMapper │ │ │ │ ├── MappingRule.php │ │ │ │ ├── RelativePath.php │ │ │ │ ├── ViolationMapper.php │ │ │ │ ├── ViolationMapperInterface.php │ │ │ │ ├── ViolationPath.php │ │ │ │ └── ViolationPathIterator.php │ │ ├── FileUploadError.php │ │ ├── Form.php │ │ ├── FormBuilder.php │ │ ├── FormBuilderInterface.php │ │ ├── FormConfigBuilder.php │ │ ├── FormConfigBuilderInterface.php │ │ ├── FormConfigInterface.php │ │ ├── FormError.php │ │ ├── FormErrorIterator.php │ │ ├── FormEvent.php │ │ ├── FormEvents.php │ │ ├── FormExtensionInterface.php │ │ ├── FormFactory.php │ │ ├── FormFactoryBuilder.php │ │ ├── FormFactoryBuilderInterface.php │ │ ├── FormFactoryInterface.php │ │ ├── FormInterface.php │ │ ├── FormRegistry.php │ │ ├── FormRegistryInterface.php │ │ ├── FormRenderer.php │ │ ├── FormRendererEngineInterface.php │ │ ├── FormRendererInterface.php │ │ ├── FormTypeExtensionInterface.php │ │ ├── FormTypeGuesserChain.php │ │ ├── FormTypeGuesserInterface.php │ │ ├── FormTypeInterface.php │ │ ├── FormView.php │ │ ├── Forms.php │ │ ├── Guess │ │ │ ├── Guess.php │ │ │ ├── TypeGuess.php │ │ │ └── ValueGuess.php │ │ ├── LICENSE │ │ ├── NativeRequestHandler.php │ │ ├── PreloadedExtension.php │ │ ├── README.md │ │ ├── RequestHandlerInterface.php │ │ ├── ResolvedFormType.php │ │ ├── ResolvedFormTypeFactory.php │ │ ├── ResolvedFormTypeFactoryInterface.php │ │ ├── ResolvedFormTypeInterface.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── validation.xml │ │ │ └── translations │ │ │ │ ├── validators.af.xlf │ │ │ │ ├── validators.ar.xlf │ │ │ │ ├── validators.az.xlf │ │ │ │ ├── validators.be.xlf │ │ │ │ ├── validators.bg.xlf │ │ │ │ ├── validators.bs.xlf │ │ │ │ ├── validators.ca.xlf │ │ │ │ ├── validators.cs.xlf │ │ │ │ ├── validators.cy.xlf │ │ │ │ ├── validators.da.xlf │ │ │ │ ├── validators.de.xlf │ │ │ │ ├── validators.el.xlf │ │ │ │ ├── validators.en.xlf │ │ │ │ ├── validators.es.xlf │ │ │ │ ├── validators.et.xlf │ │ │ │ ├── validators.eu.xlf │ │ │ │ ├── validators.fa.xlf │ │ │ │ ├── validators.fi.xlf │ │ │ │ ├── validators.fr.xlf │ │ │ │ ├── validators.gl.xlf │ │ │ │ ├── validators.he.xlf │ │ │ │ ├── validators.hr.xlf │ │ │ │ ├── validators.hu.xlf │ │ │ │ ├── validators.hy.xlf │ │ │ │ ├── validators.id.xlf │ │ │ │ ├── validators.it.xlf │ │ │ │ ├── validators.ja.xlf │ │ │ │ ├── validators.lb.xlf │ │ │ │ ├── validators.lt.xlf │ │ │ │ ├── validators.lv.xlf │ │ │ │ ├── validators.mk.xlf │ │ │ │ ├── validators.mn.xlf │ │ │ │ ├── validators.my.xlf │ │ │ │ ├── validators.nb.xlf │ │ │ │ ├── validators.nl.xlf │ │ │ │ ├── validators.nn.xlf │ │ │ │ ├── validators.no.xlf │ │ │ │ ├── validators.pl.xlf │ │ │ │ ├── validators.pt.xlf │ │ │ │ ├── validators.pt_BR.xlf │ │ │ │ ├── validators.ro.xlf │ │ │ │ ├── validators.ru.xlf │ │ │ │ ├── validators.sk.xlf │ │ │ │ ├── validators.sl.xlf │ │ │ │ ├── validators.sq.xlf │ │ │ │ ├── validators.sr_Cyrl.xlf │ │ │ │ ├── validators.sr_Latn.xlf │ │ │ │ ├── validators.sv.xlf │ │ │ │ ├── validators.th.xlf │ │ │ │ ├── validators.tl.xlf │ │ │ │ ├── validators.tr.xlf │ │ │ │ ├── validators.uk.xlf │ │ │ │ ├── validators.ur.xlf │ │ │ │ ├── validators.uz.xlf │ │ │ │ ├── validators.vi.xlf │ │ │ │ ├── validators.zh_CN.xlf │ │ │ │ └── validators.zh_TW.xlf │ │ ├── ReversedTransformer.php │ │ ├── SubmitButton.php │ │ ├── SubmitButtonBuilder.php │ │ ├── SubmitButtonTypeInterface.php │ │ ├── Test │ │ │ ├── FormBuilderInterface.php │ │ │ ├── FormIntegrationTestCase.php │ │ │ ├── FormInterface.php │ │ │ ├── FormPerformanceTestCase.php │ │ │ ├── Traits │ │ │ │ ├── RunTestTrait.php │ │ │ │ └── ValidatorExtensionTrait.php │ │ │ └── TypeTestCase.php │ │ ├── Util │ │ │ ├── FormUtil.php │ │ │ ├── InheritDataAwareIterator.php │ │ │ ├── OptionsResolverWrapper.php │ │ │ ├── OrderedHashMap.php │ │ │ ├── OrderedHashMapIterator.php │ │ │ ├── ServerParams.php │ │ │ └── StringUtil.php │ │ └── composer.json │ ├── framework-bundle │ │ ├── CHANGELOG.md │ │ ├── CacheWarmer │ │ │ ├── AbstractPhpFileCacheWarmer.php │ │ │ ├── AnnotationsCacheWarmer.php │ │ │ ├── CachePoolClearerCacheWarmer.php │ │ │ ├── ConfigBuilderCacheWarmer.php │ │ │ ├── RouterCacheWarmer.php │ │ │ ├── SerializerCacheWarmer.php │ │ │ ├── TranslationsCacheWarmer.php │ │ │ └── ValidatorCacheWarmer.php │ │ ├── Command │ │ │ ├── AboutCommand.php │ │ │ ├── AbstractConfigCommand.php │ │ │ ├── AssetsInstallCommand.php │ │ │ ├── BuildDebugContainerTrait.php │ │ │ ├── CacheClearCommand.php │ │ │ ├── CachePoolClearCommand.php │ │ │ ├── CachePoolDeleteCommand.php │ │ │ ├── CachePoolInvalidateTagsCommand.php │ │ │ ├── CachePoolListCommand.php │ │ │ ├── CachePoolPruneCommand.php │ │ │ ├── CacheWarmupCommand.php │ │ │ ├── ConfigDebugCommand.php │ │ │ ├── ConfigDumpReferenceCommand.php │ │ │ ├── ContainerDebugCommand.php │ │ │ ├── ContainerLintCommand.php │ │ │ ├── DebugAutowiringCommand.php │ │ │ ├── EventDispatcherDebugCommand.php │ │ │ ├── RouterDebugCommand.php │ │ │ ├── RouterMatchCommand.php │ │ │ ├── SecretsDecryptToLocalCommand.php │ │ │ ├── SecretsEncryptFromLocalCommand.php │ │ │ ├── SecretsGenerateKeysCommand.php │ │ │ ├── SecretsListCommand.php │ │ │ ├── SecretsRemoveCommand.php │ │ │ ├── SecretsSetCommand.php │ │ │ ├── TranslationDebugCommand.php │ │ │ ├── TranslationUpdateCommand.php │ │ │ ├── WorkflowDumpCommand.php │ │ │ ├── XliffLintCommand.php │ │ │ └── YamlLintCommand.php │ │ ├── Console │ │ │ ├── Application.php │ │ │ ├── Descriptor │ │ │ │ ├── Descriptor.php │ │ │ │ ├── JsonDescriptor.php │ │ │ │ ├── MarkdownDescriptor.php │ │ │ │ ├── TextDescriptor.php │ │ │ │ └── XmlDescriptor.php │ │ │ └── Helper │ │ │ │ └── DescriptorHelper.php │ │ ├── Controller │ │ │ ├── AbstractController.php │ │ │ ├── ControllerResolver.php │ │ │ ├── RedirectController.php │ │ │ └── TemplateController.php │ │ ├── DataCollector │ │ │ ├── AbstractDataCollector.php │ │ │ ├── RouterDataCollector.php │ │ │ └── TemplateAwareDataCollectorInterface.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── AddAnnotationsCachedReaderPass.php │ │ │ │ ├── AddDebugLogProcessorPass.php │ │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ │ ├── AssetsContextPass.php │ │ │ │ ├── ContainerBuilderDebugDumpPass.php │ │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ │ ├── EnableLoggerDebugModePass.php │ │ │ │ ├── ErrorLoggerCompilerPass.php │ │ │ │ ├── LoggingTranslatorPass.php │ │ │ │ ├── ProfilerPass.php │ │ │ │ ├── RemoveUnusedSessionMarshallingHandlerPass.php │ │ │ │ ├── TestServiceContainerRealRefPass.php │ │ │ │ ├── TestServiceContainerWeakRefPass.php │ │ │ │ ├── TranslationUpdateCommandPass.php │ │ │ │ ├── UnusedTagsPass.php │ │ │ │ └── WorkflowGuardListenerPass.php │ │ │ ├── Configuration.php │ │ │ ├── FrameworkExtension.php │ │ │ └── VirtualRequestStackPass.php │ │ ├── EventListener │ │ │ ├── ConsoleProfilerListener.php │ │ │ └── SuggestMissingPackageSubscriber.php │ │ ├── FrameworkBundle.php │ │ ├── HttpCache │ │ │ └── HttpCache.php │ │ ├── Kernel │ │ │ └── MicroKernelTrait.php │ │ ├── KernelBrowser.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── check-unused-known-tags.php │ │ │ └── config │ │ │ │ ├── annotations.php │ │ │ │ ├── asset_mapper.php │ │ │ │ ├── assets.php │ │ │ │ ├── cache.php │ │ │ │ ├── cache_debug.php │ │ │ │ ├── collectors.php │ │ │ │ ├── console.php │ │ │ │ ├── debug.php │ │ │ │ ├── debug_prod.php │ │ │ │ ├── error_renderer.php │ │ │ │ ├── esi.php │ │ │ │ ├── form.php │ │ │ │ ├── form_csrf.php │ │ │ │ ├── form_debug.php │ │ │ │ ├── fragment_listener.php │ │ │ │ ├── fragment_renderer.php │ │ │ │ ├── html_sanitizer.php │ │ │ │ ├── http_client.php │ │ │ │ ├── http_client_debug.php │ │ │ │ ├── identity_translator.php │ │ │ │ ├── lock.php │ │ │ │ ├── mailer.php │ │ │ │ ├── mailer_debug.php │ │ │ │ ├── mailer_transports.php │ │ │ │ ├── mailer_webhook.php │ │ │ │ ├── messenger.php │ │ │ │ ├── messenger_debug.php │ │ │ │ ├── mime_type.php │ │ │ │ ├── notifier.php │ │ │ │ ├── notifier_debug.php │ │ │ │ ├── notifier_transports.php │ │ │ │ ├── notifier_webhook.php │ │ │ │ ├── process.php │ │ │ │ ├── profiling.php │ │ │ │ ├── property_access.php │ │ │ │ ├── property_info.php │ │ │ │ ├── rate_limiter.php │ │ │ │ ├── remote_event.php │ │ │ │ ├── request.php │ │ │ │ ├── routing.php │ │ │ │ ├── routing │ │ │ │ ├── errors.xml │ │ │ │ └── webhook.xml │ │ │ │ ├── scheduler.php │ │ │ │ ├── schema │ │ │ │ └── symfony-1.0.xsd │ │ │ │ ├── secrets.php │ │ │ │ ├── security_csrf.php │ │ │ │ ├── semaphore.php │ │ │ │ ├── serializer.php │ │ │ │ ├── serializer_debug.php │ │ │ │ ├── services.php │ │ │ │ ├── session.php │ │ │ │ ├── ssi.php │ │ │ │ ├── test.php │ │ │ │ ├── translation.php │ │ │ │ ├── translation_debug.php │ │ │ │ ├── translation_providers.php │ │ │ │ ├── uid.php │ │ │ │ ├── validator.php │ │ │ │ ├── validator_debug.php │ │ │ │ ├── web.php │ │ │ │ ├── web_link.php │ │ │ │ ├── webhook.php │ │ │ │ ├── workflow.php │ │ │ │ └── workflow_debug.php │ │ ├── Routing │ │ │ ├── AnnotatedRouteControllerLoader.php │ │ │ ├── Attribute │ │ │ │ └── AsRoutingConditionService.php │ │ │ ├── AttributeRouteControllerLoader.php │ │ │ ├── DelegatingLoader.php │ │ │ ├── RedirectableCompiledUrlMatcher.php │ │ │ ├── RouteLoaderInterface.php │ │ │ └── Router.php │ │ ├── Secrets │ │ │ ├── AbstractVault.php │ │ │ ├── DotenvVault.php │ │ │ └── SodiumVault.php │ │ ├── Test │ │ │ ├── BrowserKitAssertionsTrait.php │ │ │ ├── DomCrawlerAssertionsTrait.php │ │ │ ├── HttpClientAssertionsTrait.php │ │ │ ├── KernelTestCase.php │ │ │ ├── MailerAssertionsTrait.php │ │ │ ├── NotificationAssertionsTrait.php │ │ │ ├── TestBrowserToken.php │ │ │ ├── TestContainer.php │ │ │ ├── WebTestAssertionsTrait.php │ │ │ └── WebTestCase.php │ │ ├── Translation │ │ │ └── Translator.php │ │ └── composer.json │ ├── http-client-contracts │ │ ├── CHANGELOG.md │ │ ├── ChunkInterface.php │ │ ├── Exception │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── DecodingExceptionInterface.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── RedirectionExceptionInterface.php │ │ │ ├── ServerExceptionInterface.php │ │ │ ├── TimeoutExceptionInterface.php │ │ │ └── TransportExceptionInterface.php │ │ ├── HttpClientInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResponseInterface.php │ │ ├── ResponseStreamInterface.php │ │ ├── Test │ │ │ ├── Fixtures │ │ │ │ └── web │ │ │ │ │ └── index.php │ │ │ ├── HttpClientTestCase.php │ │ │ └── TestHttpServer.php │ │ └── composer.json │ ├── http-client │ │ ├── AmpHttpClient.php │ │ ├── AsyncDecoratorTrait.php │ │ ├── CHANGELOG.md │ │ ├── CachingHttpClient.php │ │ ├── Chunk │ │ │ ├── DataChunk.php │ │ │ ├── ErrorChunk.php │ │ │ ├── FirstChunk.php │ │ │ ├── InformationalChunk.php │ │ │ ├── LastChunk.php │ │ │ └── ServerSentEvent.php │ │ ├── CurlHttpClient.php │ │ ├── DataCollector │ │ │ └── HttpClientDataCollector.php │ │ ├── DecoratorTrait.php │ │ ├── DependencyInjection │ │ │ └── HttpClientPass.php │ │ ├── EventSourceHttpClient.php │ │ ├── Exception │ │ │ ├── ClientException.php │ │ │ ├── EventSourceException.php │ │ │ ├── HttpExceptionTrait.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── JsonException.php │ │ │ ├── RedirectionException.php │ │ │ ├── ServerException.php │ │ │ ├── TimeoutException.php │ │ │ └── TransportException.php │ │ ├── HttpClient.php │ │ ├── HttpClientTrait.php │ │ ├── HttpOptions.php │ │ ├── HttplugClient.php │ │ ├── Internal │ │ │ ├── AmpBody.php │ │ │ ├── AmpClientState.php │ │ │ ├── AmpListener.php │ │ │ ├── AmpResolver.php │ │ │ ├── Canary.php │ │ │ ├── ClientState.php │ │ │ ├── CurlClientState.php │ │ │ ├── DnsCache.php │ │ │ ├── HttplugWaitLoop.php │ │ │ ├── LegacyHttplugInterface.php │ │ │ ├── NativeClientState.php │ │ │ └── PushedResponse.php │ │ ├── LICENSE │ │ ├── Messenger │ │ │ ├── PingWebhookMessage.php │ │ │ └── PingWebhookMessageHandler.php │ │ ├── MockHttpClient.php │ │ ├── NativeHttpClient.php │ │ ├── NoPrivateNetworkHttpClient.php │ │ ├── Psr18Client.php │ │ ├── README.md │ │ ├── Response │ │ │ ├── AmpResponse.php │ │ │ ├── AsyncContext.php │ │ │ ├── AsyncResponse.php │ │ │ ├── CommonResponseTrait.php │ │ │ ├── CurlResponse.php │ │ │ ├── HttplugPromise.php │ │ │ ├── JsonMockResponse.php │ │ │ ├── MockResponse.php │ │ │ ├── NativeResponse.php │ │ │ ├── ResponseStream.php │ │ │ ├── StreamWrapper.php │ │ │ ├── StreamableInterface.php │ │ │ ├── TraceableResponse.php │ │ │ └── TransportResponseTrait.php │ │ ├── Retry │ │ │ ├── GenericRetryStrategy.php │ │ │ └── RetryStrategyInterface.php │ │ ├── RetryableHttpClient.php │ │ ├── ScopingHttpClient.php │ │ ├── Test │ │ │ └── HarFileResponseFactory.php │ │ ├── TraceableHttpClient.php │ │ ├── UriTemplateHttpClient.php │ │ └── composer.json │ ├── http-foundation │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── BinaryFileResponse.php │ │ ├── CHANGELOG.md │ │ ├── ChainRequestMatcher.php │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── BadRequestException.php │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── JsonException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ ├── SessionNotFoundException.php │ │ │ ├── SuspiciousOperationException.php │ │ │ └── UnexpectedValueException.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── CannotWriteFileException.php │ │ │ │ ├── ExtensionFileException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── FormSizeFileException.php │ │ │ │ ├── IniSizeFileException.php │ │ │ │ ├── NoFileException.php │ │ │ │ ├── NoTmpDirFileException.php │ │ │ │ ├── PartialFileException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ └── UploadException.php │ │ │ ├── File.php │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── HeaderUtils.php │ │ ├── InputBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RateLimiter │ │ │ ├── AbstractRequestRateLimiter.php │ │ │ ├── PeekableRequestRateLimiterInterface.php │ │ │ └── RequestRateLimiterInterface.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcher │ │ │ ├── AttributesRequestMatcher.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── HostRequestMatcher.php │ │ │ ├── IpsRequestMatcher.php │ │ │ ├── IsJsonRequestMatcher.php │ │ │ ├── MethodRequestMatcher.php │ │ │ ├── PathRequestMatcher.php │ │ │ ├── PortRequestMatcher.php │ │ │ └── SchemeRequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ └── AttributeBagInterface.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── FlashBagAwareSessionInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionBagProxy.php │ │ │ ├── SessionFactory.php │ │ │ ├── SessionFactoryInterface.php │ │ │ ├── SessionInterface.php │ │ │ ├── SessionUtils.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ ├── IdentityMarshaller.php │ │ │ │ ├── MarshallingSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MigratingSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ ├── RedisSessionHandler.php │ │ │ │ ├── SessionHandlerFactory.php │ │ │ │ └── StrictSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── NativeSessionStorageFactory.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxy.php │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ │ └── SessionStorageInterface.php │ │ ├── StreamedJsonResponse.php │ │ ├── StreamedResponse.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderLocationSame.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ ├── UriSigner.php │ │ ├── UrlHelper.php │ │ └── composer.json │ ├── http-kernel │ │ ├── Attribute │ │ │ ├── AsController.php │ │ │ ├── AsTargetedValueResolver.php │ │ │ ├── Cache.php │ │ │ ├── MapDateTime.php │ │ │ ├── MapQueryParameter.php │ │ │ ├── MapQueryString.php │ │ │ ├── MapRequestPayload.php │ │ │ ├── ValueResolver.php │ │ │ ├── WithHttpStatus.php │ │ │ └── WithLogLevel.php │ │ ├── Bundle │ │ │ ├── AbstractBundle.php │ │ │ ├── Bundle.php │ │ │ ├── BundleExtension.php │ │ │ └── BundleInterface.php │ │ ├── CHANGELOG.md │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ ├── ChainCacheClearer.php │ │ │ └── Psr6CacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Config │ │ │ └── FileLocator.php │ │ ├── Controller │ │ │ ├── ArgumentResolver.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── BackedEnumValueResolver.php │ │ │ │ ├── DateTimeValueResolver.php │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ │ ├── QueryParameterValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestPayloadValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ ├── UidValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── ErrorController.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ ├── TraceableControllerResolver.php │ │ │ └── ValueResolverInterface.php │ │ ├── ControllerMetadata │ │ │ ├── ArgumentMetadata.php │ │ │ ├── ArgumentMetadataFactory.php │ │ │ └── ArgumentMetadataFactoryInterface.php │ │ ├── DataCollector │ │ │ ├── AjaxDataCollector.php │ │ │ ├── ConfigDataCollector.php │ │ │ ├── DataCollector.php │ │ │ ├── DataCollectorInterface.php │ │ │ ├── DumpDataCollector.php │ │ │ ├── EventDataCollector.php │ │ │ ├── ExceptionDataCollector.php │ │ │ ├── LateDataCollectorInterface.php │ │ │ ├── LoggerDataCollector.php │ │ │ ├── MemoryDataCollector.php │ │ │ ├── RequestDataCollector.php │ │ │ ├── RouterDataCollector.php │ │ │ └── TimeDataCollector.php │ │ ├── Debug │ │ │ ├── ErrorHandlerConfigurator.php │ │ │ ├── FileLinkFormatter.php │ │ │ ├── TraceableEventDispatcher.php │ │ │ └── VirtualRequestStack.php │ │ ├── DependencyInjection │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ ├── ConfigurableExtension.php │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ ├── Extension.php │ │ │ ├── FragmentRendererPass.php │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ ├── LoggerPass.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ ├── RegisterLocaleAwareServicesPass.php │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ ├── ResettableServicePass.php │ │ │ └── ServicesResetter.php │ │ ├── Event │ │ │ ├── ControllerArgumentsEvent.php │ │ │ ├── ControllerEvent.php │ │ │ ├── ExceptionEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── KernelEvent.php │ │ │ ├── RequestEvent.php │ │ │ ├── ResponseEvent.php │ │ │ ├── TerminateEvent.php │ │ │ └── ViewEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── CacheAttributeListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleAwareListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── ControllerDoesNotReturnResponseException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── InvalidMetadataException.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── LockedHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ ├── ResolverNotFoundException.php │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ ├── TooManyRequestsHttpException.php │ │ │ ├── UnauthorizedHttpException.php │ │ │ ├── UnexpectedSessionUsageException.php │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ ├── Fragment │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ ├── EsiFragmentRenderer.php │ │ │ ├── FragmentHandler.php │ │ │ ├── FragmentRendererInterface.php │ │ │ ├── FragmentUriGenerator.php │ │ │ ├── FragmentUriGeneratorInterface.php │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ ├── InlineFragmentRenderer.php │ │ │ ├── RoutableFragmentRenderer.php │ │ │ └── SsiFragmentRenderer.php │ │ ├── HttpCache │ │ │ ├── AbstractSurrogate.php │ │ │ ├── CacheWasLockedException.php │ │ │ ├── Esi.php │ │ │ ├── HttpCache.php │ │ │ ├── ResponseCacheStrategy.php │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ ├── Ssi.php │ │ │ ├── Store.php │ │ │ ├── StoreInterface.php │ │ │ ├── SubRequestHandler.php │ │ │ └── SurrogateInterface.php │ │ ├── HttpClientKernel.php │ │ ├── HttpKernel.php │ │ ├── HttpKernelBrowser.php │ │ ├── HttpKernelInterface.php │ │ ├── Kernel.php │ │ ├── KernelEvents.php │ │ ├── KernelInterface.php │ │ ├── LICENSE │ │ ├── Log │ │ │ ├── DebugLoggerConfigurator.php │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── README.md │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ ├── UriSigner.php │ │ └── composer.json │ ├── intl │ │ ├── CHANGELOG.md │ │ ├── Countries.php │ │ ├── Currencies.php │ │ ├── Data │ │ │ ├── Bundle │ │ │ │ ├── Compiler │ │ │ │ │ ├── BundleCompilerInterface.php │ │ │ │ │ └── GenrbCompiler.php │ │ │ │ ├── Reader │ │ │ │ │ ├── BufferedBundleReader.php │ │ │ │ │ ├── BundleEntryReader.php │ │ │ │ │ ├── BundleEntryReaderInterface.php │ │ │ │ │ ├── BundleReaderInterface.php │ │ │ │ │ ├── IntlBundleReader.php │ │ │ │ │ ├── JsonBundleReader.php │ │ │ │ │ └── PhpBundleReader.php │ │ │ │ └── Writer │ │ │ │ │ ├── BundleWriterInterface.php │ │ │ │ │ ├── JsonBundleWriter.php │ │ │ │ │ ├── PhpBundleWriter.php │ │ │ │ │ └── TextBundleWriter.php │ │ │ ├── Generator │ │ │ │ ├── AbstractDataGenerator.php │ │ │ │ ├── CurrencyDataGenerator.php │ │ │ │ ├── FallbackTrait.php │ │ │ │ ├── GeneratorConfig.php │ │ │ │ ├── LanguageDataGenerator.php │ │ │ │ ├── LocaleDataGenerator.php │ │ │ │ ├── RegionDataGenerator.php │ │ │ │ ├── ScriptDataGenerator.php │ │ │ │ └── TimezoneDataGenerator.php │ │ │ └── Util │ │ │ │ ├── ArrayAccessibleResourceBundle.php │ │ │ │ ├── LocaleScanner.php │ │ │ │ ├── RecursiveArrayAccess.php │ │ │ │ └── RingBuffer.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingResourceException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── ResourceBundleNotFoundException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnexpectedTypeException.php │ │ ├── Intl.php │ │ ├── LICENSE │ │ ├── Languages.php │ │ ├── Locale.php │ │ ├── Locales.php │ │ ├── README.md │ │ ├── ResourceBundle.php │ │ ├── Resources │ │ │ ├── bin │ │ │ │ ├── autoload.php │ │ │ │ ├── common.php │ │ │ │ ├── compile │ │ │ │ ├── compress │ │ │ │ └── update-data.php │ │ │ └── data │ │ │ │ ├── currencies │ │ │ │ ├── af.php │ │ │ │ ├── af_NA.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_DJ.php │ │ │ │ ├── ar_ER.php │ │ │ │ ├── ar_KM.php │ │ │ │ ├── ar_LB.php │ │ │ │ ├── ar_SO.php │ │ │ │ ├── ar_SS.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── bo_IN.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ca_FR.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── de_LI.php │ │ │ │ ├── de_LU.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_150.php │ │ │ │ ├── en_AG.php │ │ │ │ ├── en_AI.php │ │ │ │ ├── en_AT.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_BB.php │ │ │ │ ├── en_BI.php │ │ │ │ ├── en_BM.php │ │ │ │ ├── en_BS.php │ │ │ │ ├── en_BW.php │ │ │ │ ├── en_BZ.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_CC.php │ │ │ │ ├── en_CK.php │ │ │ │ ├── en_CX.php │ │ │ │ ├── en_DK.php │ │ │ │ ├── en_DM.php │ │ │ │ ├── en_ER.php │ │ │ │ ├── en_FJ.php │ │ │ │ ├── en_FK.php │ │ │ │ ├── en_GD.php │ │ │ │ ├── en_GG.php │ │ │ │ ├── en_GH.php │ │ │ │ ├── en_GI.php │ │ │ │ ├── en_GM.php │ │ │ │ ├── en_GY.php │ │ │ │ ├── en_ID.php │ │ │ │ ├── en_IM.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── en_JE.php │ │ │ │ ├── en_JM.php │ │ │ │ ├── en_KE.php │ │ │ │ ├── en_KI.php │ │ │ │ ├── en_KN.php │ │ │ │ ├── en_KY.php │ │ │ │ ├── en_LC.php │ │ │ │ ├── en_LR.php │ │ │ │ ├── en_LS.php │ │ │ │ ├── en_MG.php │ │ │ │ ├── en_MO.php │ │ │ │ ├── en_MS.php │ │ │ │ ├── en_MT.php │ │ │ │ ├── en_MU.php │ │ │ │ ├── en_MV.php │ │ │ │ ├── en_MW.php │ │ │ │ ├── en_MY.php │ │ │ │ ├── en_NA.php │ │ │ │ ├── en_NF.php │ │ │ │ ├── en_NG.php │ │ │ │ ├── en_NH.php │ │ │ │ ├── en_NO.php │ │ │ │ ├── en_NR.php │ │ │ │ ├── en_NU.php │ │ │ │ ├── en_NZ.php │ │ │ │ ├── en_PG.php │ │ │ │ ├── en_PK.php │ │ │ │ ├── en_PN.php │ │ │ │ ├── en_RW.php │ │ │ │ ├── en_SB.php │ │ │ │ ├── en_SC.php │ │ │ │ ├── en_SE.php │ │ │ │ ├── en_SG.php │ │ │ │ ├── en_SH.php │ │ │ │ ├── en_SL.php │ │ │ │ ├── en_SS.php │ │ │ │ ├── en_SX.php │ │ │ │ ├── en_SZ.php │ │ │ │ ├── en_TK.php │ │ │ │ ├── en_TO.php │ │ │ │ ├── en_TT.php │ │ │ │ ├── en_TV.php │ │ │ │ ├── en_TZ.php │ │ │ │ ├── en_UG.php │ │ │ │ ├── en_VC.php │ │ │ │ ├── en_VU.php │ │ │ │ ├── en_WS.php │ │ │ │ ├── en_ZA.php │ │ │ │ ├── en_ZM.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_BR.php │ │ │ │ ├── es_BZ.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_CU.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GQ.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PH.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_UY.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── ff_Adlm_BF.php │ │ │ │ ├── ff_Adlm_CM.php │ │ │ │ ├── ff_Adlm_GH.php │ │ │ │ ├── ff_Adlm_GM.php │ │ │ │ ├── ff_Adlm_GW.php │ │ │ │ ├── ff_Adlm_LR.php │ │ │ │ ├── ff_Adlm_MR.php │ │ │ │ ├── ff_Adlm_NE.php │ │ │ │ ├── ff_Adlm_NG.php │ │ │ │ ├── ff_Adlm_SL.php │ │ │ │ ├── ff_Adlm_SN.php │ │ │ │ ├── ff_GN.php │ │ │ │ ├── ff_Latn_GH.php │ │ │ │ ├── ff_Latn_GM.php │ │ │ │ ├── ff_Latn_GN.php │ │ │ │ ├── ff_Latn_LR.php │ │ │ │ ├── ff_Latn_MR.php │ │ │ │ ├── ff_Latn_NG.php │ │ │ │ ├── ff_Latn_SL.php │ │ │ │ ├── ff_MR.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fo_DK.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BI.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CD.php │ │ │ │ ├── fr_DJ.php │ │ │ │ ├── fr_DZ.php │ │ │ │ ├── fr_GN.php │ │ │ │ ├── fr_HT.php │ │ │ │ ├── fr_KM.php │ │ │ │ ├── fr_LU.php │ │ │ │ ├── fr_MG.php │ │ │ │ ├── fr_MR.php │ │ │ │ ├── fr_MU.php │ │ │ │ ├── fr_RW.php │ │ │ │ ├── fr_SC.php │ │ │ │ ├── fr_SY.php │ │ │ │ ├── fr_TN.php │ │ │ │ ├── fr_VU.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── ha_GH.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hr_BA.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── ln_AO.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── ms_BN.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── ms_SG.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nl_AW.php │ │ │ │ ├── nl_BQ.php │ │ │ │ ├── nl_CW.php │ │ │ │ ├── nl_SR.php │ │ │ │ ├── nl_SX.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── om.php │ │ │ │ ├── om_KE.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── os_RU.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_AO.php │ │ │ │ ├── pt_CV.php │ │ │ │ ├── pt_LU.php │ │ │ │ ├── pt_MO.php │ │ │ │ ├── pt_MZ.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── pt_ST.php │ │ │ │ ├── qu.php │ │ │ │ ├── qu_BO.php │ │ │ │ ├── qu_EC.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── root.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_BY.php │ │ │ │ ├── ru_KG.php │ │ │ │ ├── ru_KZ.php │ │ │ │ ├── ru_MD.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_SE.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── so_DJ.php │ │ │ │ ├── so_ET.php │ │ │ │ ├── so_KE.php │ │ │ │ ├── sq.php │ │ │ │ ├── sq_MK.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── st.php │ │ │ │ ├── st_LS.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── sw_UG.php │ │ │ │ ├── ta.php │ │ │ │ ├── ta_LK.php │ │ │ │ ├── ta_MY.php │ │ │ │ ├── ta_SG.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── tn.php │ │ │ │ ├── tn_BW.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hans_HK.php │ │ │ │ ├── zh_Hans_MO.php │ │ │ │ ├── zh_Hans_SG.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ ├── zh_Hant_MO.php │ │ │ │ ├── zh_MO.php │ │ │ │ ├── zh_SG.php │ │ │ │ └── zu.php │ │ │ │ ├── git-info.txt │ │ │ │ ├── languages │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ie.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── oc.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sr_XK.php │ │ │ │ ├── st.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── tn.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── za.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ │ ├── locales │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ie.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── oc.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_UA.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── st.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── tn.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── za.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ │ ├── regions │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── bo_IN.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ie.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── oc.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_UA.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sr_XK.php │ │ │ │ ├── st.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── tn.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── za.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ │ ├── scripts │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_US.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ie.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── oc.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sh.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── st.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── tn.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── za.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ │ ├── timezones │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_US.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ie.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── oc.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── ro.php │ │ │ │ ├── root.php │ │ │ │ ├── ru.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── st.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── tn.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── za.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_Hans_SG.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ │ ├── transliterator │ │ │ │ └── emoji │ │ │ │ │ ├── emoji-af.php │ │ │ │ │ ├── emoji-ak.php │ │ │ │ │ ├── emoji-am.php │ │ │ │ │ ├── emoji-ar.php │ │ │ │ │ ├── emoji-ar_sa.php │ │ │ │ │ ├── emoji-as.php │ │ │ │ │ ├── emoji-ast.php │ │ │ │ │ ├── emoji-az.php │ │ │ │ │ ├── emoji-be.php │ │ │ │ │ ├── emoji-bew.php │ │ │ │ │ ├── emoji-bg.php │ │ │ │ │ ├── emoji-bgn.php │ │ │ │ │ ├── emoji-blo.php │ │ │ │ │ ├── emoji-bn.php │ │ │ │ │ ├── emoji-br.php │ │ │ │ │ ├── emoji-bs.php │ │ │ │ │ ├── emoji-ca.php │ │ │ │ │ ├── emoji-ca_es.php │ │ │ │ │ ├── emoji-ca_es_valencia.php │ │ │ │ │ ├── emoji-ccp.php │ │ │ │ │ ├── emoji-ceb.php │ │ │ │ │ ├── emoji-chr.php │ │ │ │ │ ├── emoji-ckb.php │ │ │ │ │ ├── emoji-cs.php │ │ │ │ │ ├── emoji-cv.php │ │ │ │ │ ├── emoji-cy.php │ │ │ │ │ ├── emoji-da.php │ │ │ │ │ ├── emoji-de.php │ │ │ │ │ ├── emoji-de_ch.php │ │ │ │ │ ├── emoji-dsb.php │ │ │ │ │ ├── emoji-el.php │ │ │ │ │ ├── emoji-en.php │ │ │ │ │ ├── emoji-en_001.php │ │ │ │ │ ├── emoji-en_au.php │ │ │ │ │ ├── emoji-en_ca.php │ │ │ │ │ ├── emoji-en_gb.php │ │ │ │ │ ├── emoji-en_in.php │ │ │ │ │ ├── emoji-es.php │ │ │ │ │ ├── emoji-es_419.php │ │ │ │ │ ├── emoji-es_mx.php │ │ │ │ │ ├── emoji-es_us.php │ │ │ │ │ ├── emoji-et.php │ │ │ │ │ ├── emoji-eu.php │ │ │ │ │ ├── emoji-fa.php │ │ │ │ │ ├── emoji-ff_adlm.php │ │ │ │ │ ├── emoji-fi.php │ │ │ │ │ ├── emoji-fil.php │ │ │ │ │ ├── emoji-fo.php │ │ │ │ │ ├── emoji-fr.php │ │ │ │ │ ├── emoji-fr_ca.php │ │ │ │ │ ├── emoji-frr.php │ │ │ │ │ ├── emoji-ga.php │ │ │ │ │ ├── emoji-gd.php │ │ │ │ │ ├── emoji-github.php │ │ │ │ │ ├── emoji-gl.php │ │ │ │ │ ├── emoji-gu.php │ │ │ │ │ ├── emoji-ha.php │ │ │ │ │ ├── emoji-ha_ne.php │ │ │ │ │ ├── emoji-he.php │ │ │ │ │ ├── emoji-hi.php │ │ │ │ │ ├── emoji-hi_latn.php │ │ │ │ │ ├── emoji-hr.php │ │ │ │ │ ├── emoji-hsb.php │ │ │ │ │ ├── emoji-hu.php │ │ │ │ │ ├── emoji-hy.php │ │ │ │ │ ├── emoji-ia.php │ │ │ │ │ ├── emoji-id.php │ │ │ │ │ ├── emoji-ig.php │ │ │ │ │ ├── emoji-is.php │ │ │ │ │ ├── emoji-it.php │ │ │ │ │ ├── emoji-ja.php │ │ │ │ │ ├── emoji-jv.php │ │ │ │ │ ├── emoji-ka.php │ │ │ │ │ ├── emoji-kab.php │ │ │ │ │ ├── emoji-kk.php │ │ │ │ │ ├── emoji-kk_arab.php │ │ │ │ │ ├── emoji-kl.php │ │ │ │ │ ├── emoji-km.php │ │ │ │ │ ├── emoji-kn.php │ │ │ │ │ ├── emoji-ko.php │ │ │ │ │ ├── emoji-kok.php │ │ │ │ │ ├── emoji-ku.php │ │ │ │ │ ├── emoji-ky.php │ │ │ │ │ ├── emoji-lb.php │ │ │ │ │ ├── emoji-lij.php │ │ │ │ │ ├── emoji-lo.php │ │ │ │ │ ├── emoji-lt.php │ │ │ │ │ ├── emoji-lv.php │ │ │ │ │ ├── emoji-mi.php │ │ │ │ │ ├── emoji-mk.php │ │ │ │ │ ├── emoji-ml.php │ │ │ │ │ ├── emoji-mn.php │ │ │ │ │ ├── emoji-mni.php │ │ │ │ │ ├── emoji-mr.php │ │ │ │ │ ├── emoji-ms.php │ │ │ │ │ ├── emoji-mt.php │ │ │ │ │ ├── emoji-my.php │ │ │ │ │ ├── emoji-ne.php │ │ │ │ │ ├── emoji-nl.php │ │ │ │ │ ├── emoji-nn.php │ │ │ │ │ ├── emoji-no.php │ │ │ │ │ ├── emoji-nso.php │ │ │ │ │ ├── emoji-oc.php │ │ │ │ │ ├── emoji-or.php │ │ │ │ │ ├── emoji-pa.php │ │ │ │ │ ├── emoji-pa_arab.php │ │ │ │ │ ├── emoji-pap.php │ │ │ │ │ ├── emoji-pcm.php │ │ │ │ │ ├── emoji-pl.php │ │ │ │ │ ├── emoji-ps.php │ │ │ │ │ ├── emoji-pt.php │ │ │ │ │ ├── emoji-pt_pt.php │ │ │ │ │ ├── emoji-qu.php │ │ │ │ │ ├── emoji-quc.php │ │ │ │ │ ├── emoji-rhg.php │ │ │ │ │ ├── emoji-rm.php │ │ │ │ │ ├── emoji-ro.php │ │ │ │ │ ├── emoji-root.php │ │ │ │ │ ├── emoji-ru.php │ │ │ │ │ ├── emoji-rw.php │ │ │ │ │ ├── emoji-sat.php │ │ │ │ │ ├── emoji-sc.php │ │ │ │ │ ├── emoji-sd.php │ │ │ │ │ ├── emoji-si.php │ │ │ │ │ ├── emoji-sk.php │ │ │ │ │ ├── emoji-sl.php │ │ │ │ │ ├── emoji-slack.php │ │ │ │ │ ├── emoji-so.php │ │ │ │ │ ├── emoji-sq.php │ │ │ │ │ ├── emoji-sr.php │ │ │ │ │ ├── emoji-sr_cyrl.php │ │ │ │ │ ├── emoji-sr_cyrl_ba.php │ │ │ │ │ ├── emoji-sr_latn.php │ │ │ │ │ ├── emoji-sr_latn_ba.php │ │ │ │ │ ├── emoji-strip.php │ │ │ │ │ ├── emoji-sv.php │ │ │ │ │ ├── emoji-sw.php │ │ │ │ │ ├── emoji-sw_ke.php │ │ │ │ │ ├── emoji-ta.php │ │ │ │ │ ├── emoji-te.php │ │ │ │ │ ├── emoji-tg.php │ │ │ │ │ ├── emoji-th.php │ │ │ │ │ ├── emoji-ti.php │ │ │ │ │ ├── emoji-tk.php │ │ │ │ │ ├── emoji-tn.php │ │ │ │ │ ├── emoji-to.php │ │ │ │ │ ├── emoji-tr.php │ │ │ │ │ ├── emoji-ug.php │ │ │ │ │ ├── emoji-uk.php │ │ │ │ │ ├── emoji-ur.php │ │ │ │ │ ├── emoji-uz.php │ │ │ │ │ ├── emoji-vec.php │ │ │ │ │ ├── emoji-vi.php │ │ │ │ │ ├── emoji-wo.php │ │ │ │ │ ├── emoji-xh.php │ │ │ │ │ ├── emoji-yo.php │ │ │ │ │ ├── emoji-yo_bj.php │ │ │ │ │ ├── emoji-yue.php │ │ │ │ │ ├── emoji-yue_hans.php │ │ │ │ │ ├── emoji-zh.php │ │ │ │ │ ├── emoji-zh_hant.php │ │ │ │ │ ├── emoji-zh_hant_hk.php │ │ │ │ │ ├── emoji-zu.php │ │ │ │ │ ├── github-emoji.php │ │ │ │ │ └── slack-emoji.php │ │ │ │ └── version.txt │ │ ├── Scripts.php │ │ ├── Timezones.php │ │ ├── Transliterator │ │ │ └── EmojiTransliterator.php │ │ ├── Util │ │ │ ├── GitRepository.php │ │ │ ├── GzipStreamWrapper.php │ │ │ ├── IcuVersion.php │ │ │ ├── IntlTestHelper.php │ │ │ └── Version.php │ │ └── composer.json │ ├── mailer │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── MailerTestCommand.php │ │ ├── DataCollector │ │ │ └── MessageDataCollector.php │ │ ├── DelayedEnvelope.php │ │ ├── Envelope.php │ │ ├── Event │ │ │ ├── FailedMessageEvent.php │ │ │ ├── MessageEvent.php │ │ │ ├── MessageEvents.php │ │ │ └── SentMessageEvent.php │ │ ├── EventListener │ │ │ ├── EnvelopeListener.php │ │ │ ├── MessageListener.php │ │ │ ├── MessageLoggerListener.php │ │ │ └── MessengerTransportListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpTransportException.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TransportException.php │ │ │ ├── TransportExceptionInterface.php │ │ │ ├── UnexpectedResponseException.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Header │ │ │ ├── MetadataHeader.php │ │ │ └── TagHeader.php │ │ ├── LICENSE │ │ ├── Mailer.php │ │ ├── MailerInterface.php │ │ ├── Messenger │ │ │ ├── MessageHandler.php │ │ │ └── SendEmailMessage.php │ │ ├── README.md │ │ ├── SentMessage.php │ │ ├── Test │ │ │ ├── Constraint │ │ │ │ ├── EmailCount.php │ │ │ │ └── EmailIsQueued.php │ │ │ └── TransportFactoryTestCase.php │ │ ├── Transport.php │ │ ├── Transport │ │ │ ├── AbstractApiTransport.php │ │ │ ├── AbstractHttpTransport.php │ │ │ ├── AbstractTransport.php │ │ │ ├── AbstractTransportFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FailoverTransport.php │ │ │ ├── NativeTransportFactory.php │ │ │ ├── NullTransport.php │ │ │ ├── NullTransportFactory.php │ │ │ ├── RoundRobinTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SendmailTransportFactory.php │ │ │ ├── Smtp │ │ │ │ ├── Auth │ │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── EsmtpTransportFactory.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ └── Stream │ │ │ │ │ ├── AbstractStream.php │ │ │ │ │ ├── ProcessStream.php │ │ │ │ │ └── SocketStream.php │ │ │ ├── TransportFactoryInterface.php │ │ │ ├── TransportInterface.php │ │ │ └── Transports.php │ │ └── composer.json │ ├── maker-bundle │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── config │ │ │ ├── help │ │ │ │ ├── MakeAuth.txt │ │ │ │ ├── MakeCommand.txt │ │ │ │ ├── MakeController.txt │ │ │ │ ├── MakeCrud.txt │ │ │ │ ├── MakeDockerDatabase.txt │ │ │ │ ├── MakeEntity.txt │ │ │ │ ├── MakeFixture.txt │ │ │ │ ├── MakeForm.txt │ │ │ │ ├── MakeFunctionalTest.txt │ │ │ │ ├── MakeListener.txt │ │ │ │ ├── MakeMessage.txt │ │ │ │ ├── MakeMiddleware.txt │ │ │ │ ├── MakeMigration.txt │ │ │ │ ├── MakeRegistrationForm.txt │ │ │ │ ├── MakeResetPassword.txt │ │ │ │ ├── MakeScheduler.txt │ │ │ │ ├── MakeSerializerEncoder.txt │ │ │ │ ├── MakeSerializerNormalizer.txt │ │ │ │ ├── MakeStimulusController.txt │ │ │ │ ├── MakeSubscriber.txt │ │ │ │ ├── MakeTest.txt │ │ │ │ ├── MakeTwigExtension.txt │ │ │ │ ├── MakeUnitTest.txt │ │ │ │ ├── MakeUser.txt │ │ │ │ ├── MakeValidator.txt │ │ │ │ ├── MakeVoter.txt │ │ │ │ ├── MakeWebhook.txt │ │ │ │ ├── _WithTests.txt │ │ │ │ ├── _WithUid.txt │ │ │ │ └── security │ │ │ │ │ ├── MakeCustom.txt │ │ │ │ │ └── MakeFormLogin.txt │ │ │ ├── makers.xml │ │ │ ├── php-cs-fixer.config.php │ │ │ └── services.xml │ │ ├── docs │ │ │ └── index.rst │ │ ├── phpstan.dist.neon │ │ ├── src │ │ │ ├── ApplicationAwareMakerInterface.php │ │ │ ├── Command │ │ │ │ └── MakerCommand.php │ │ │ ├── Console │ │ │ │ └── MigrationDiffFilteredOutput.php │ │ │ ├── ConsoleStyle.php │ │ │ ├── DependencyBuilder.php │ │ │ ├── DependencyInjection │ │ │ │ └── CompilerPass │ │ │ │ │ ├── MakeCommandRegistrationPass.php │ │ │ │ │ ├── RemoveMissingParametersPass.php │ │ │ │ │ └── SetDoctrineAnnotatedPrefixesPass.php │ │ │ ├── Docker │ │ │ │ └── DockerDatabaseServices.php │ │ │ ├── Doctrine │ │ │ │ ├── BaseCollectionRelation.php │ │ │ │ ├── BaseRelation.php │ │ │ │ ├── DoctrineHelper.php │ │ │ │ ├── EntityClassGenerator.php │ │ │ │ ├── EntityDetails.php │ │ │ │ ├── EntityRegenerator.php │ │ │ │ ├── EntityRelation.php │ │ │ │ ├── ORMDependencyBuilder.php │ │ │ │ ├── RelationManyToMany.php │ │ │ │ ├── RelationManyToOne.php │ │ │ │ ├── RelationOneToMany.php │ │ │ │ ├── RelationOneToOne.php │ │ │ │ └── StaticReflectionService.php │ │ │ ├── Event │ │ │ │ └── ConsoleErrorSubscriber.php │ │ │ ├── EventRegistry.php │ │ │ ├── Exception │ │ │ │ └── RuntimeCommandException.php │ │ │ ├── FileManager.php │ │ │ ├── Generator.php │ │ │ ├── GeneratorTwigHelper.php │ │ │ ├── InputAwareMakerInterface.php │ │ │ ├── InputConfiguration.php │ │ │ ├── Maker │ │ │ │ ├── AbstractMaker.php │ │ │ │ ├── Common │ │ │ │ │ ├── CanGenerateTestsTrait.php │ │ │ │ │ ├── EntityIdTypeEnum.php │ │ │ │ │ ├── InstallDependencyTrait.php │ │ │ │ │ └── UidTrait.php │ │ │ │ ├── MakeAuthenticator.php │ │ │ │ ├── MakeCommand.php │ │ │ │ ├── MakeController.php │ │ │ │ ├── MakeCrud.php │ │ │ │ ├── MakeDockerDatabase.php │ │ │ │ ├── MakeEntity.php │ │ │ │ ├── MakeFixtures.php │ │ │ │ ├── MakeForm.php │ │ │ │ ├── MakeFunctionalTest.php │ │ │ │ ├── MakeListener.php │ │ │ │ ├── MakeMessage.php │ │ │ │ ├── MakeMessengerMiddleware.php │ │ │ │ ├── MakeMigration.php │ │ │ │ ├── MakeRegistrationForm.php │ │ │ │ ├── MakeResetPassword.php │ │ │ │ ├── MakeSchedule.php │ │ │ │ ├── MakeSerializerEncoder.php │ │ │ │ ├── MakeSerializerNormalizer.php │ │ │ │ ├── MakeStimulusController.php │ │ │ │ ├── MakeSubscriber.php │ │ │ │ ├── MakeTest.php │ │ │ │ ├── MakeTwigComponent.php │ │ │ │ ├── MakeTwigExtension.php │ │ │ │ ├── MakeUnitTest.php │ │ │ │ ├── MakeUser.php │ │ │ │ ├── MakeValidator.php │ │ │ │ ├── MakeVoter.php │ │ │ │ ├── MakeWebhook.php │ │ │ │ └── Security │ │ │ │ │ ├── MakeCustomAuthenticator.php │ │ │ │ │ └── MakeFormLogin.php │ │ │ ├── MakerBundle.php │ │ │ ├── MakerInterface.php │ │ │ ├── Renderer │ │ │ │ └── FormTypeRenderer.php │ │ │ ├── Resources │ │ │ │ └── bin │ │ │ │ │ └── php-cs-fixer-v3.49.0.phar │ │ │ ├── Security │ │ │ │ ├── InteractiveSecurityHelper.php │ │ │ │ ├── Model │ │ │ │ │ ├── Authenticator.php │ │ │ │ │ └── AuthenticatorType.php │ │ │ │ ├── SecurityConfigUpdater.php │ │ │ │ ├── SecurityControllerBuilder.php │ │ │ │ ├── UserClassBuilder.php │ │ │ │ └── UserClassConfiguration.php │ │ │ ├── Str.php │ │ │ ├── Test │ │ │ │ ├── MakerTestCase.php │ │ │ │ ├── MakerTestDetails.php │ │ │ │ ├── MakerTestEnvironment.php │ │ │ │ ├── MakerTestKernel.php │ │ │ │ ├── MakerTestProcess.php │ │ │ │ └── MakerTestRunner.php │ │ │ ├── Util │ │ │ │ ├── AutoloaderUtil.php │ │ │ │ ├── ClassDetails.php │ │ │ │ ├── ClassNameDetails.php │ │ │ │ ├── ClassNameValue.php │ │ │ │ ├── ClassSource │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ClassData.php │ │ │ │ │ │ └── ClassProperty.php │ │ │ │ ├── ClassSourceManipulator.php │ │ │ │ ├── CliOutputHelper.php │ │ │ │ ├── ComposeFileManipulator.php │ │ │ │ ├── ComposerAutoloaderFinder.php │ │ │ │ ├── MakerFileLinkFormatter.php │ │ │ │ ├── PhpCompatUtil.php │ │ │ │ ├── PrettyPrinter.php │ │ │ │ ├── TemplateComponentGenerator.php │ │ │ │ ├── TemplateLinter.php │ │ │ │ ├── UseStatementGenerator.php │ │ │ │ ├── YamlManipulationFailedException.php │ │ │ │ └── YamlSourceManipulator.php │ │ │ └── Validator.php │ │ └── templates │ │ │ ├── Class.tpl.php │ │ │ ├── authenticator │ │ │ ├── EmptyAuthenticator.tpl.php │ │ │ ├── EmptySecurityController.tpl.php │ │ │ ├── LoginFormAuthenticator.tpl.php │ │ │ └── login_form.tpl.php │ │ │ ├── command │ │ │ └── Command.tpl.php │ │ │ ├── controller │ │ │ ├── Controller.tpl.php │ │ │ ├── test │ │ │ │ └── Test.tpl.php │ │ │ └── twig_template.tpl.php │ │ │ ├── crud │ │ │ ├── controller │ │ │ │ └── Controller.tpl.php │ │ │ ├── templates │ │ │ │ ├── _delete_form.tpl.php │ │ │ │ ├── _form.tpl.php │ │ │ │ ├── edit.tpl.php │ │ │ │ ├── index.tpl.php │ │ │ │ ├── new.tpl.php │ │ │ │ └── show.tpl.php │ │ │ └── test │ │ │ │ └── Test.EntityManager.tpl.php │ │ │ ├── doctrine │ │ │ ├── Entity.tpl.php │ │ │ ├── Fixtures.tpl.php │ │ │ ├── Repository.tpl.php │ │ │ └── broadcast_twig_template.tpl.php │ │ │ ├── event │ │ │ ├── Listener.tpl.php │ │ │ └── Subscriber.tpl.php │ │ │ ├── form │ │ │ └── Type.tpl.php │ │ │ ├── message │ │ │ ├── Message.tpl.php │ │ │ └── MessageHandler.tpl.php │ │ │ ├── middleware │ │ │ └── Middleware.tpl.php │ │ │ ├── registration │ │ │ ├── RegistrationController.tpl.php │ │ │ ├── Test.WithVerify.tpl.php │ │ │ ├── Test.WithoutVerify.tpl.php │ │ │ ├── twig_email.tpl.php │ │ │ └── twig_template.tpl.php │ │ │ ├── resetPassword │ │ │ ├── ChangePasswordFormType.tpl.php │ │ │ ├── ResetPasswordController.tpl.php │ │ │ ├── ResetPasswordRequestFormType.tpl.php │ │ │ ├── Test.ResetPasswordController.tpl.php │ │ │ ├── twig_check_email.tpl.php │ │ │ ├── twig_email.tpl.php │ │ │ ├── twig_request.tpl.php │ │ │ └── twig_reset.tpl.php │ │ │ ├── scheduler │ │ │ └── Schedule.tpl.php │ │ │ ├── security │ │ │ ├── UserProvider.tpl.php │ │ │ ├── Voter.tpl.php │ │ │ ├── custom │ │ │ │ └── Authenticator.tpl.php │ │ │ └── formLogin │ │ │ │ ├── LoginController.tpl.php │ │ │ │ ├── Test.LoginController.tpl.php │ │ │ │ └── login_form.tpl.php │ │ │ ├── serializer │ │ │ ├── Encoder.tpl.php │ │ │ └── Normalizer.tpl.php │ │ │ ├── stimulus │ │ │ └── Controller.tpl.php │ │ │ ├── test │ │ │ ├── ApiTestCase.tpl.php │ │ │ ├── Functional.tpl.php │ │ │ ├── KernelTestCase.tpl.php │ │ │ ├── PantherTestCase.tpl.php │ │ │ ├── TestCase.tpl.php │ │ │ ├── Unit.tpl.php │ │ │ └── WebTestCase.tpl.php │ │ │ ├── twig │ │ │ ├── Component.tpl.php │ │ │ ├── Extension.tpl.php │ │ │ ├── LiveComponent.tpl.php │ │ │ ├── Runtime.tpl.php │ │ │ └── component_template.tpl.php │ │ │ ├── validator │ │ │ ├── Constraint.tpl.php │ │ │ └── Validator.tpl.php │ │ │ ├── verifyEmail │ │ │ └── EmailVerifier.tpl.php │ │ │ └── webhook │ │ │ ├── RequestParser.tpl.php │ │ │ └── WebhookConsumer.tpl.php │ ├── messenger │ │ ├── Attribute │ │ │ └── AsMessageHandler.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── AbstractFailedMessagesCommand.php │ │ │ ├── ConsumeMessagesCommand.php │ │ │ ├── DebugCommand.php │ │ │ ├── FailedMessagesRemoveCommand.php │ │ │ ├── FailedMessagesRetryCommand.php │ │ │ ├── FailedMessagesShowCommand.php │ │ │ ├── SetupTransportsCommand.php │ │ │ ├── StatsCommand.php │ │ │ └── StopWorkersCommand.php │ │ ├── DataCollector │ │ │ └── MessengerDataCollector.php │ │ ├── DependencyInjection │ │ │ └── MessengerPass.php │ │ ├── Envelope.php │ │ ├── Event │ │ │ ├── AbstractWorkerMessageEvent.php │ │ │ ├── SendMessageToTransportsEvent.php │ │ │ ├── WorkerMessageFailedEvent.php │ │ │ ├── WorkerMessageHandledEvent.php │ │ │ ├── WorkerMessageReceivedEvent.php │ │ │ ├── WorkerMessageRetriedEvent.php │ │ │ ├── WorkerRateLimitedEvent.php │ │ │ ├── WorkerRunningEvent.php │ │ │ ├── WorkerStartedEvent.php │ │ │ └── WorkerStoppedEvent.php │ │ ├── EventListener │ │ │ ├── AddErrorDetailsStampListener.php │ │ │ ├── DispatchPcntlSignalListener.php │ │ │ ├── ResetServicesListener.php │ │ │ ├── SendFailedMessageForRetryListener.php │ │ │ ├── SendFailedMessageToFailureTransportListener.php │ │ │ ├── StopWorkerOnCustomStopExceptionListener.php │ │ │ ├── StopWorkerOnFailureLimitListener.php │ │ │ ├── StopWorkerOnMemoryLimitListener.php │ │ │ ├── StopWorkerOnMessageLimitListener.php │ │ │ ├── StopWorkerOnRestartSignalListener.php │ │ │ ├── StopWorkerOnSignalsListener.php │ │ │ ├── StopWorkerOnSigtermSignalListener.php │ │ │ └── StopWorkerOnTimeLimitListener.php │ │ ├── Exception │ │ │ ├── DelayedMessageHandlingException.php │ │ │ ├── EnvelopeAwareExceptionInterface.php │ │ │ ├── EnvelopeAwareExceptionTrait.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── HandlerFailedException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── MessageDecodingFailedException.php │ │ │ ├── NoHandlerForMessageException.php │ │ │ ├── NoSenderForMessageException.php │ │ │ ├── RecoverableExceptionInterface.php │ │ │ ├── RecoverableMessageHandlingException.php │ │ │ ├── RejectRedeliveredMessageException.php │ │ │ ├── RuntimeException.php │ │ │ ├── StopWorkerException.php │ │ │ ├── StopWorkerExceptionInterface.php │ │ │ ├── TransportException.php │ │ │ ├── UnrecoverableExceptionInterface.php │ │ │ ├── UnrecoverableMessageHandlingException.php │ │ │ ├── ValidationFailedException.php │ │ │ ├── WrappedExceptionsInterface.php │ │ │ └── WrappedExceptionsTrait.php │ │ ├── HandleTrait.php │ │ ├── Handler │ │ │ ├── Acknowledger.php │ │ │ ├── BatchHandlerInterface.php │ │ │ ├── BatchHandlerTrait.php │ │ │ ├── HandlerDescriptor.php │ │ │ ├── HandlersLocator.php │ │ │ ├── HandlersLocatorInterface.php │ │ │ ├── MessageHandlerInterface.php │ │ │ ├── MessageSubscriberInterface.php │ │ │ └── RedispatchMessageHandler.php │ │ ├── LICENSE │ │ ├── Message │ │ │ └── RedispatchMessage.php │ │ ├── MessageBus.php │ │ ├── MessageBusInterface.php │ │ ├── Middleware │ │ │ ├── ActivationMiddleware.php │ │ │ ├── AddBusNameStampMiddleware.php │ │ │ ├── DispatchAfterCurrentBusMiddleware.php │ │ │ ├── FailedMessageProcessingMiddleware.php │ │ │ ├── HandleMessageMiddleware.php │ │ │ ├── MiddlewareInterface.php │ │ │ ├── RejectRedeliveredMessageMiddleware.php │ │ │ ├── RouterContextMiddleware.php │ │ │ ├── SendMessageMiddleware.php │ │ │ ├── StackInterface.php │ │ │ ├── StackMiddleware.php │ │ │ ├── TraceableMiddleware.php │ │ │ └── ValidationMiddleware.php │ │ ├── README.md │ │ ├── Retry │ │ │ ├── MultiplierRetryStrategy.php │ │ │ └── RetryStrategyInterface.php │ │ ├── RoutableMessageBus.php │ │ ├── Stamp │ │ │ ├── AckStamp.php │ │ │ ├── BusNameStamp.php │ │ │ ├── ConsumedByWorkerStamp.php │ │ │ ├── DelayStamp.php │ │ │ ├── DispatchAfterCurrentBusStamp.php │ │ │ ├── ErrorDetailsStamp.php │ │ │ ├── FlushBatchHandlersStamp.php │ │ │ ├── HandledStamp.php │ │ │ ├── HandlerArgumentsStamp.php │ │ │ ├── MessageDecodingFailedStamp.php │ │ │ ├── NoAutoAckStamp.php │ │ │ ├── NonSendableStampInterface.php │ │ │ ├── ReceivedStamp.php │ │ │ ├── RedeliveryStamp.php │ │ │ ├── RouterContextStamp.php │ │ │ ├── SentStamp.php │ │ │ ├── SentToFailureTransportStamp.php │ │ │ ├── SerializedMessageStamp.php │ │ │ ├── SerializerStamp.php │ │ │ ├── StampInterface.php │ │ │ ├── TransportMessageIdStamp.php │ │ │ ├── TransportNamesStamp.php │ │ │ └── ValidationStamp.php │ │ ├── Test │ │ │ └── Middleware │ │ │ │ └── MiddlewareTestCase.php │ │ ├── TraceableMessageBus.php │ │ ├── Transport │ │ │ ├── InMemory │ │ │ │ ├── InMemoryTransport.php │ │ │ │ └── InMemoryTransportFactory.php │ │ │ ├── InMemoryTransport.php │ │ │ ├── InMemoryTransportFactory.php │ │ │ ├── Receiver │ │ │ │ ├── ListableReceiverInterface.php │ │ │ │ ├── MessageCountAwareInterface.php │ │ │ │ ├── QueueReceiverInterface.php │ │ │ │ ├── ReceiverInterface.php │ │ │ │ └── SingleMessageReceiver.php │ │ │ ├── Sender │ │ │ │ ├── SenderInterface.php │ │ │ │ ├── SendersLocator.php │ │ │ │ └── SendersLocatorInterface.php │ │ │ ├── Serialization │ │ │ │ ├── Normalizer │ │ │ │ │ └── FlattenExceptionNormalizer.php │ │ │ │ ├── PhpSerializer.php │ │ │ │ ├── Serializer.php │ │ │ │ └── SerializerInterface.php │ │ │ ├── SetupableTransportInterface.php │ │ │ ├── Sync │ │ │ │ ├── SyncTransport.php │ │ │ │ └── SyncTransportFactory.php │ │ │ ├── TransportFactory.php │ │ │ ├── TransportFactoryInterface.php │ │ │ └── TransportInterface.php │ │ ├── Worker.php │ │ ├── WorkerMetadata.php │ │ └── composer.json │ ├── mime │ │ ├── Address.php │ │ ├── BodyRendererInterface.php │ │ ├── CHANGELOG.md │ │ ├── CharacterStream.php │ │ ├── Crypto │ │ │ ├── DkimOptions.php │ │ │ ├── DkimSigner.php │ │ │ ├── SMime.php │ │ │ ├── SMimeEncrypter.php │ │ │ └── SMimeSigner.php │ │ ├── DependencyInjection │ │ │ └── AddMimeTypeGuesserPass.php │ │ ├── DraftEmail.php │ │ ├── Email.php │ │ ├── Encoder │ │ │ ├── AddressEncoderInterface.php │ │ │ ├── Base64ContentEncoder.php │ │ │ ├── Base64Encoder.php │ │ │ ├── Base64MimeHeaderEncoder.php │ │ │ ├── ContentEncoderInterface.php │ │ │ ├── EightBitContentEncoder.php │ │ │ ├── EncoderInterface.php │ │ │ ├── IdnAddressEncoder.php │ │ │ ├── MimeHeaderEncoderInterface.php │ │ │ ├── QpContentEncoder.php │ │ │ ├── QpEncoder.php │ │ │ ├── QpMimeHeaderEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ ├── Exception │ │ │ ├── AddressEncoderException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RfcComplianceException.php │ │ │ └── RuntimeException.php │ │ ├── FileBinaryMimeTypeGuesser.php │ │ ├── FileinfoMimeTypeGuesser.php │ │ ├── Header │ │ │ ├── AbstractHeader.php │ │ │ ├── DateHeader.php │ │ │ ├── HeaderInterface.php │ │ │ ├── Headers.php │ │ │ ├── IdentificationHeader.php │ │ │ ├── MailboxHeader.php │ │ │ ├── MailboxListHeader.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── PathHeader.php │ │ │ └── UnstructuredHeader.php │ │ ├── HtmlToTextConverter │ │ │ ├── DefaultHtmlToTextConverter.php │ │ │ ├── HtmlToTextConverterInterface.php │ │ │ └── LeagueHtmlToMarkdownConverter.php │ │ ├── LICENSE │ │ ├── Message.php │ │ ├── MessageConverter.php │ │ ├── MimeTypeGuesserInterface.php │ │ ├── MimeTypes.php │ │ ├── MimeTypesInterface.php │ │ ├── Part │ │ │ ├── AbstractMultipartPart.php │ │ │ ├── AbstractPart.php │ │ │ ├── DataPart.php │ │ │ ├── File.php │ │ │ ├── MessagePart.php │ │ │ ├── Multipart │ │ │ │ ├── AlternativePart.php │ │ │ │ ├── DigestPart.php │ │ │ │ ├── FormDataPart.php │ │ │ │ ├── MixedPart.php │ │ │ │ └── RelatedPart.php │ │ │ ├── SMimePart.php │ │ │ └── TextPart.php │ │ ├── README.md │ │ ├── RawMessage.php │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── update_mime_types.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── EmailAddressContains.php │ │ │ │ ├── EmailAttachmentCount.php │ │ │ │ ├── EmailHasHeader.php │ │ │ │ ├── EmailHeaderSame.php │ │ │ │ ├── EmailHtmlBodyContains.php │ │ │ │ ├── EmailSubjectContains.php │ │ │ │ └── EmailTextBodyContains.php │ │ └── composer.json │ ├── monolog-bridge │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── ServerLogCommand.php │ │ ├── Formatter │ │ │ ├── CompatibilityFormatter.php │ │ │ ├── ConsoleFormatter.php │ │ │ └── VarDumperFormatter.php │ │ ├── Handler │ │ │ ├── ChromePhpHandler.php │ │ │ ├── CompatibilityHandler.php │ │ │ ├── CompatibilityProcessingHandler.php │ │ │ ├── ConsoleHandler.php │ │ │ ├── ElasticsearchLogstashHandler.php │ │ │ ├── FingersCrossed │ │ │ │ ├── HttpCodeActivationStrategy.php │ │ │ │ └── NotFoundActivationStrategy.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── MailerHandler.php │ │ │ ├── NotifierHandler.php │ │ │ └── ServerLogHandler.php │ │ ├── LICENSE │ │ ├── Logger.php │ │ ├── Processor │ │ │ ├── AbstractTokenProcessor.php │ │ │ ├── CompatibilityProcessor.php │ │ │ ├── ConsoleCommandProcessor.php │ │ │ ├── DebugProcessor.php │ │ │ ├── RouteProcessor.php │ │ │ ├── SwitchUserTokenProcessor.php │ │ │ ├── TokenProcessor.php │ │ │ └── WebProcessor.php │ │ ├── README.md │ │ └── composer.json │ ├── monolog-bundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── AddProcessorsPass.php │ │ │ │ ├── AddSwiftMailerTransportPass.php │ │ │ │ ├── DebugHandlerPass.php │ │ │ │ ├── FixEmptyLoggerPass.php │ │ │ │ └── LoggerChannelPass.php │ │ │ ├── Configuration.php │ │ │ └── MonologExtension.php │ │ ├── LICENSE │ │ ├── MonologBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── monolog.xml │ │ │ │ └── schema │ │ │ │ └── monolog-1.0.xsd │ │ ├── SwiftMailer │ │ │ └── MessageFactory.php │ │ └── composer.json │ ├── notifier │ │ ├── CHANGELOG.md │ │ ├── Channel │ │ │ ├── AbstractChannel.php │ │ │ ├── BrowserChannel.php │ │ │ ├── ChannelInterface.php │ │ │ ├── ChannelPolicy.php │ │ │ ├── ChannelPolicyInterface.php │ │ │ ├── ChatChannel.php │ │ │ ├── EmailChannel.php │ │ │ ├── PushChannel.php │ │ │ └── SmsChannel.php │ │ ├── Chatter.php │ │ ├── ChatterInterface.php │ │ ├── DataCollector │ │ │ └── NotificationDataCollector.php │ │ ├── Event │ │ │ ├── FailedMessageEvent.php │ │ │ ├── MessageEvent.php │ │ │ ├── NotificationEvents.php │ │ │ └── SentMessageEvent.php │ │ ├── EventListener │ │ │ ├── NotificationLoggerListener.php │ │ │ └── SendFailedMessageToNotifierListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── FlashMessageImportanceMapperException.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LengthException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingRequiredOptionException.php │ │ │ ├── MultipleExclusiveOptionsUsedException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TransportException.php │ │ │ ├── TransportExceptionInterface.php │ │ │ ├── UnsupportedMessageTypeException.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── FlashMessage │ │ │ ├── AbstractFlashMessageImportanceMapper.php │ │ │ ├── BootstrapFlashMessageImportanceMapper.php │ │ │ ├── DefaultFlashMessageImportanceMapper.php │ │ │ └── FlashMessageImportanceMapperInterface.php │ │ ├── LICENSE │ │ ├── Message │ │ │ ├── ChatMessage.php │ │ │ ├── EmailMessage.php │ │ │ ├── FromNotificationInterface.php │ │ │ ├── MessageInterface.php │ │ │ ├── MessageOptionsInterface.php │ │ │ ├── NullMessage.php │ │ │ ├── PushMessage.php │ │ │ ├── SentMessage.php │ │ │ └── SmsMessage.php │ │ ├── Messenger │ │ │ └── MessageHandler.php │ │ ├── Notification │ │ │ ├── ChatNotificationInterface.php │ │ │ ├── EmailNotificationInterface.php │ │ │ ├── Notification.php │ │ │ ├── PushNotificationInterface.php │ │ │ └── SmsNotificationInterface.php │ │ ├── Notifier.php │ │ ├── NotifierInterface.php │ │ ├── README.md │ │ ├── Recipient │ │ │ ├── EmailRecipientInterface.php │ │ │ ├── EmailRecipientTrait.php │ │ │ ├── NoRecipient.php │ │ │ ├── Recipient.php │ │ │ ├── RecipientInterface.php │ │ │ ├── SmsRecipientInterface.php │ │ │ └── SmsRecipientTrait.php │ │ ├── Test │ │ │ ├── Constraint │ │ │ │ ├── NotificationCount.php │ │ │ │ ├── NotificationIsQueued.php │ │ │ │ ├── NotificationSubjectContains.php │ │ │ │ └── NotificationTransportIsEqual.php │ │ │ ├── TransportFactoryTestCase.php │ │ │ └── TransportTestCase.php │ │ ├── Texter.php │ │ ├── TexterInterface.php │ │ ├── Transport.php │ │ ├── Transport │ │ │ ├── AbstractTransport.php │ │ │ ├── AbstractTransportFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FailoverTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── NullTransportFactory.php │ │ │ ├── RoundRobinTransport.php │ │ │ ├── TransportFactoryInterface.php │ │ │ ├── TransportInterface.php │ │ │ └── Transports.php │ │ └── composer.json │ ├── options-resolver │ │ ├── CHANGELOG.md │ │ ├── Debug │ │ │ └── OptionsResolverIntrospector.php │ │ ├── Exception │ │ │ ├── AccessException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionsException.php │ │ │ ├── MissingOptionsException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── NoSuchOptionException.php │ │ │ ├── OptionDefinitionException.php │ │ │ └── UndefinedOptionsException.php │ │ ├── LICENSE │ │ ├── OptionConfigurator.php │ │ ├── Options.php │ │ ├── OptionsResolver.php │ │ ├── README.md │ │ └── composer.json │ ├── password-hasher │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── UserPasswordHashCommand.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidPasswordException.php │ │ │ └── LogicException.php │ │ ├── Hasher │ │ │ ├── CheckPasswordLengthTrait.php │ │ │ ├── MessageDigestPasswordHasher.php │ │ │ ├── MigratingPasswordHasher.php │ │ │ ├── NativePasswordHasher.php │ │ │ ├── PasswordHasherAwareInterface.php │ │ │ ├── PasswordHasherFactory.php │ │ │ ├── PasswordHasherFactoryInterface.php │ │ │ ├── Pbkdf2PasswordHasher.php │ │ │ ├── PlaintextPasswordHasher.php │ │ │ ├── SodiumPasswordHasher.php │ │ │ ├── UserPasswordHasher.php │ │ │ └── UserPasswordHasherInterface.php │ │ ├── LICENSE │ │ ├── LegacyPasswordHasherInterface.php │ │ ├── PasswordHasherInterface.php │ │ ├── README.md │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-icu │ │ ├── Collator.php │ │ ├── Currencies.php │ │ ├── DateFormat │ │ │ ├── AmPmTransformer.php │ │ │ ├── DayOfWeekTransformer.php │ │ │ ├── DayOfYearTransformer.php │ │ │ ├── DayTransformer.php │ │ │ ├── FullTransformer.php │ │ │ ├── Hour1200Transformer.php │ │ │ ├── Hour1201Transformer.php │ │ │ ├── Hour2400Transformer.php │ │ │ ├── Hour2401Transformer.php │ │ │ ├── HourTransformer.php │ │ │ ├── MinuteTransformer.php │ │ │ ├── MonthTransformer.php │ │ │ ├── QuarterTransformer.php │ │ │ ├── SecondTransformer.php │ │ │ ├── TimezoneTransformer.php │ │ │ ├── Transformer.php │ │ │ └── YearTransformer.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── MethodArgumentNotImplementedException.php │ │ │ ├── MethodArgumentValueNotImplementedException.php │ │ │ ├── MethodNotImplementedException.php │ │ │ ├── NotImplementedException.php │ │ │ └── RuntimeException.php │ │ ├── Icu.php │ │ ├── IntlDateFormatter.php │ │ ├── LICENSE │ │ ├── Locale.php │ │ ├── NumberFormatter.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── currencies.php │ │ │ └── stubs │ │ │ │ ├── Collator.php │ │ │ │ ├── IntlDateFormatter.php │ │ │ │ ├── Locale.php │ │ │ │ └── NumberFormatter.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-idn │ │ ├── Idn.php │ │ ├── Info.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php83 │ │ ├── LICENSE │ │ ├── Php83.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── DateError.php │ │ │ │ ├── DateException.php │ │ │ │ ├── DateInvalidOperationException.php │ │ │ │ ├── DateInvalidTimeZoneException.php │ │ │ │ ├── DateMalformedIntervalStringException.php │ │ │ │ ├── DateMalformedPeriodStringException.php │ │ │ │ ├── DateMalformedStringException.php │ │ │ │ ├── DateObjectError.php │ │ │ │ ├── DateRangeError.php │ │ │ │ ├── Override.php │ │ │ │ └── SQLite3Exception.php │ │ ├── bootstrap.php │ │ ├── bootstrap81.php │ │ └── composer.json │ ├── polyfill-php84 │ │ ├── LICENSE │ │ ├── Php84.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Deprecated.php │ │ │ │ └── ReflectionConstant.php │ │ ├── bootstrap.php │ │ ├── bootstrap82.php │ │ └── composer.json │ ├── process │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessSignaledException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ ├── RunProcessFailedException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── Messenger │ │ │ ├── RunProcessContext.php │ │ │ ├── RunProcessMessage.php │ │ │ └── RunProcessMessageHandler.php │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── PhpSubprocess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── property-access │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── AccessException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidPropertyPathException.php │ │ │ ├── NoSuchIndexException.php │ │ │ ├── NoSuchPropertyException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UninitializedPropertyException.php │ │ ├── LICENSE │ │ ├── PropertyAccess.php │ │ ├── PropertyAccessor.php │ │ ├── PropertyAccessorBuilder.php │ │ ├── PropertyAccessorInterface.php │ │ ├── PropertyPath.php │ │ ├── PropertyPathBuilder.php │ │ ├── PropertyPathInterface.php │ │ ├── PropertyPathIterator.php │ │ ├── PropertyPathIteratorInterface.php │ │ ├── README.md │ │ └── composer.json │ ├── property-info │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ ├── PropertyInfoConstructorPass.php │ │ │ └── PropertyInfoPass.php │ │ ├── Extractor │ │ │ ├── ConstructorArgumentTypeExtractorInterface.php │ │ │ ├── ConstructorExtractor.php │ │ │ ├── PhpDocExtractor.php │ │ │ ├── PhpStanExtractor.php │ │ │ ├── ReflectionExtractor.php │ │ │ └── SerializerExtractor.php │ │ ├── LICENSE │ │ ├── PhpStan │ │ │ ├── NameScope.php │ │ │ └── NameScopeFactory.php │ │ ├── PropertyAccessExtractorInterface.php │ │ ├── PropertyDescriptionExtractorInterface.php │ │ ├── PropertyInfoCacheExtractor.php │ │ ├── PropertyInfoExtractor.php │ │ ├── PropertyInfoExtractorInterface.php │ │ ├── PropertyInitializableExtractorInterface.php │ │ ├── PropertyListExtractorInterface.php │ │ ├── PropertyReadInfo.php │ │ ├── PropertyReadInfoExtractorInterface.php │ │ ├── PropertyTypeExtractorInterface.php │ │ ├── PropertyWriteInfo.php │ │ ├── PropertyWriteInfoExtractorInterface.php │ │ ├── README.md │ │ ├── Type.php │ │ ├── Util │ │ │ ├── PhpDocTypeHelper.php │ │ │ └── PhpStanTypeHelper.php │ │ └── composer.json │ ├── routing │ │ ├── Alias.php │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── Attribute │ │ │ └── Route.php │ │ ├── CHANGELOG.md │ │ ├── CompiledRoute.php │ │ ├── DependencyInjection │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── MissingMandatoryParametersException.php │ │ │ ├── NoConfigurationException.php │ │ │ ├── ResourceNotFoundException.php │ │ │ ├── RouteCircularReferenceException.php │ │ │ ├── RouteNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Generator │ │ │ ├── CompiledUrlGenerator.php │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ ├── Dumper │ │ │ │ ├── CompiledUrlGeneratorDumper.php │ │ │ │ ├── GeneratorDumper.php │ │ │ │ └── GeneratorDumperInterface.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlGeneratorInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.php │ │ │ ├── AttributeClassLoader.php │ │ │ ├── AttributeDirectoryLoader.php │ │ │ ├── AttributeFileLoader.php │ │ │ ├── ClosureLoader.php │ │ │ ├── Configurator │ │ │ │ ├── AliasConfigurator.php │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ ├── ImportConfigurator.php │ │ │ │ ├── RouteConfigurator.php │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ ├── HostTrait.php │ │ │ │ │ ├── LocalizedRouteTrait.php │ │ │ │ │ ├── PrefixTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ ├── ContainerLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── ObjectLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── Psr4DirectoryLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── routing │ │ │ │ └── routing-1.0.xsd │ │ ├── Matcher │ │ │ ├── CompiledUrlMatcher.php │ │ │ ├── Dumper │ │ │ │ ├── CompiledUrlMatcherDumper.php │ │ │ │ ├── CompiledUrlMatcherTrait.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ └── StaticPrefixCollection.php │ │ │ ├── ExpressionLanguageProvider.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── TraceableUrlMatcher.php │ │ │ ├── UrlMatcher.php │ │ │ └── UrlMatcherInterface.php │ │ ├── README.md │ │ ├── RequestContext.php │ │ ├── RequestContextAwareInterface.php │ │ ├── Requirement │ │ │ ├── EnumRequirement.php │ │ │ └── Requirement.php │ │ ├── Route.php │ │ ├── RouteCollection.php │ │ ├── RouteCompiler.php │ │ ├── RouteCompilerInterface.php │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ └── composer.json │ ├── runtime │ │ ├── CHANGELOG.md │ │ ├── GenericRuntime.php │ │ ├── Internal │ │ │ ├── BasicErrorHandler.php │ │ │ ├── ComposerPlugin.php │ │ │ ├── Console │ │ │ │ ├── ApplicationRuntime.php │ │ │ │ ├── Command │ │ │ │ │ └── CommandRuntime.php │ │ │ │ ├── Input │ │ │ │ │ └── InputInterfaceRuntime.php │ │ │ │ └── Output │ │ │ │ │ └── OutputInterfaceRuntime.php │ │ │ ├── HttpFoundation │ │ │ │ ├── RequestRuntime.php │ │ │ │ └── ResponseRuntime.php │ │ │ ├── HttpKernel │ │ │ │ └── HttpKernelInterfaceRuntime.php │ │ │ ├── MissingDotenv.php │ │ │ ├── SymfonyErrorHandler.php │ │ │ └── autoload_runtime.template │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resolver │ │ │ ├── ClosureResolver.php │ │ │ └── DebugClosureResolver.php │ │ ├── ResolverInterface.php │ │ ├── Runner │ │ │ ├── ClosureRunner.php │ │ │ └── Symfony │ │ │ │ ├── ConsoleApplicationRunner.php │ │ │ │ ├── HttpKernelRunner.php │ │ │ │ └── ResponseRunner.php │ │ ├── RunnerInterface.php │ │ ├── RuntimeInterface.php │ │ ├── SymfonyRuntime.php │ │ └── composer.json │ ├── security-bundle │ │ ├── CHANGELOG.md │ │ ├── CacheWarmer │ │ │ └── ExpressionCacheWarmer.php │ │ ├── Command │ │ │ └── DebugFirewallCommand.php │ │ ├── DataCollector │ │ │ └── SecurityDataCollector.php │ │ ├── Debug │ │ │ ├── TraceableFirewallListener.php │ │ │ ├── TraceableListenerTrait.php │ │ │ ├── WrappedLazyListener.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ │ ├── AddSecurityVotersPass.php │ │ │ │ ├── AddSessionDomainConstraintPass.php │ │ │ │ ├── CleanRememberMeVerifierPass.php │ │ │ │ ├── MakeFirewallsEventDispatcherTraceablePass.php │ │ │ │ ├── RegisterCsrfFeaturesPass.php │ │ │ │ ├── RegisterEntryPointPass.php │ │ │ │ ├── RegisterGlobalSecurityEventListenersPass.php │ │ │ │ ├── RegisterLdapLocatorPass.php │ │ │ │ ├── RegisterTokenUsageTrackingPass.php │ │ │ │ ├── ReplaceDecoratedRememberMeHandlerPass.php │ │ │ │ └── SortFirewallListenersPass.php │ │ │ ├── MainConfiguration.php │ │ │ ├── Security │ │ │ │ ├── AccessToken │ │ │ │ │ ├── OidcTokenHandlerFactory.php │ │ │ │ │ ├── OidcUserInfoTokenHandlerFactory.php │ │ │ │ │ ├── ServiceTokenHandlerFactory.php │ │ │ │ │ └── TokenHandlerFactoryInterface.php │ │ │ │ ├── Factory │ │ │ │ │ ├── AbstractFactory.php │ │ │ │ │ ├── AccessTokenFactory.php │ │ │ │ │ ├── AuthenticatorFactoryInterface.php │ │ │ │ │ ├── CustomAuthenticatorFactory.php │ │ │ │ │ ├── FirewallListenerFactoryInterface.php │ │ │ │ │ ├── FormLoginFactory.php │ │ │ │ │ ├── FormLoginLdapFactory.php │ │ │ │ │ ├── HttpBasicFactory.php │ │ │ │ │ ├── HttpBasicLdapFactory.php │ │ │ │ │ ├── JsonLoginFactory.php │ │ │ │ │ ├── JsonLoginLdapFactory.php │ │ │ │ │ ├── LdapFactoryTrait.php │ │ │ │ │ ├── LoginLinkFactory.php │ │ │ │ │ ├── LoginThrottlingFactory.php │ │ │ │ │ ├── RememberMeFactory.php │ │ │ │ │ ├── RemoteUserFactory.php │ │ │ │ │ ├── SignatureAlgorithmFactory.php │ │ │ │ │ ├── StatelessAuthenticatorFactoryInterface.php │ │ │ │ │ └── X509Factory.php │ │ │ │ └── UserProvider │ │ │ │ │ ├── InMemoryFactory.php │ │ │ │ │ ├── LdapFactory.php │ │ │ │ │ └── UserProviderFactoryInterface.php │ │ │ └── SecurityExtension.php │ │ ├── EventListener │ │ │ ├── FirewallListener.php │ │ │ └── VoteListener.php │ │ ├── LICENSE │ │ ├── LoginLink │ │ │ └── FirewallAwareLoginLinkHandler.php │ │ ├── README.md │ │ ├── RememberMe │ │ │ ├── DecoratedRememberMeHandler.php │ │ │ └── FirewallAwareRememberMeHandler.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── collectors.php │ │ │ │ ├── console.php │ │ │ │ ├── debug_console.php │ │ │ │ ├── password_hasher.php │ │ │ │ ├── schema │ │ │ │ │ └── security-1.0.xsd │ │ │ │ ├── security.php │ │ │ │ ├── security_authenticator.php │ │ │ │ ├── security_authenticator_access_token.php │ │ │ │ ├── security_authenticator_login_link.php │ │ │ │ ├── security_authenticator_remember_me.php │ │ │ │ ├── security_debug.php │ │ │ │ ├── security_listeners.php │ │ │ │ └── templating_twig.php │ │ │ └── views │ │ │ │ └── Collector │ │ │ │ ├── icon.svg │ │ │ │ └── security.html.twig │ │ ├── Routing │ │ │ └── LogoutRouteLoader.php │ │ ├── Security.php │ │ ├── Security │ │ │ ├── FirewallAwareTrait.php │ │ │ ├── FirewallConfig.php │ │ │ ├── FirewallContext.php │ │ │ ├── FirewallMap.php │ │ │ ├── LazyFirewallContext.php │ │ │ └── UserAuthenticator.php │ │ ├── SecurityBundle.php │ │ └── composer.json │ ├── security-core │ │ ├── Authentication │ │ │ ├── AuthenticationTrustResolver.php │ │ │ ├── AuthenticationTrustResolverInterface.php │ │ │ ├── RememberMe │ │ │ │ ├── CacheTokenVerifier.php │ │ │ │ ├── InMemoryTokenProvider.php │ │ │ │ ├── PersistentToken.php │ │ │ │ ├── PersistentTokenInterface.php │ │ │ │ ├── TokenProviderInterface.php │ │ │ │ └── TokenVerifierInterface.php │ │ │ └── Token │ │ │ │ ├── AbstractToken.php │ │ │ │ ├── NullToken.php │ │ │ │ ├── PreAuthenticatedToken.php │ │ │ │ ├── RememberMeToken.php │ │ │ │ ├── Storage │ │ │ │ ├── TokenStorage.php │ │ │ │ ├── TokenStorageInterface.php │ │ │ │ └── UsageTrackingTokenStorage.php │ │ │ │ ├── SwitchUserToken.php │ │ │ │ ├── TokenInterface.php │ │ │ │ └── UsernamePasswordToken.php │ │ ├── AuthenticationEvents.php │ │ ├── Authorization │ │ │ ├── AccessDecisionManager.php │ │ │ ├── AccessDecisionManagerInterface.php │ │ │ ├── AuthorizationChecker.php │ │ │ ├── AuthorizationCheckerInterface.php │ │ │ ├── ExpressionLanguage.php │ │ │ ├── ExpressionLanguageProvider.php │ │ │ ├── Strategy │ │ │ │ ├── AccessDecisionStrategyInterface.php │ │ │ │ ├── AffirmativeStrategy.php │ │ │ │ ├── ConsensusStrategy.php │ │ │ │ ├── PriorityStrategy.php │ │ │ │ └── UnanimousStrategy.php │ │ │ ├── TraceableAccessDecisionManager.php │ │ │ └── Voter │ │ │ │ ├── AuthenticatedVoter.php │ │ │ │ ├── CacheableVoterInterface.php │ │ │ │ ├── ExpressionVoter.php │ │ │ │ ├── RoleHierarchyVoter.php │ │ │ │ ├── RoleVoter.php │ │ │ │ ├── TraceableVoter.php │ │ │ │ ├── Voter.php │ │ │ │ └── VoterInterface.php │ │ ├── CHANGELOG.md │ │ ├── Event │ │ │ ├── AuthenticationEvent.php │ │ │ ├── AuthenticationSuccessEvent.php │ │ │ └── VoteEvent.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── AccountExpiredException.php │ │ │ ├── AccountStatusException.php │ │ │ ├── AuthenticationCredentialsNotFoundException.php │ │ │ ├── AuthenticationException.php │ │ │ ├── AuthenticationExpiredException.php │ │ │ ├── AuthenticationServiceException.php │ │ │ ├── BadCredentialsException.php │ │ │ ├── CookieTheftException.php │ │ │ ├── CredentialsExpiredException.php │ │ │ ├── CustomUserMessageAccountStatusException.php │ │ │ ├── CustomUserMessageAuthenticationException.php │ │ │ ├── DisabledException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InsufficientAuthenticationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCsrfTokenException.php │ │ │ ├── LazyResponseException.php │ │ │ ├── LockedException.php │ │ │ ├── LogicException.php │ │ │ ├── LogoutException.php │ │ │ ├── ProviderNotFoundException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SessionUnavailableException.php │ │ │ ├── TokenNotFoundException.php │ │ │ ├── TooManyLoginAttemptsAuthenticationException.php │ │ │ ├── UnsupportedUserException.php │ │ │ └── UserNotFoundException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── translations │ │ │ │ ├── security.af.xlf │ │ │ │ ├── security.ar.xlf │ │ │ │ ├── security.az.xlf │ │ │ │ ├── security.be.xlf │ │ │ │ ├── security.bg.xlf │ │ │ │ ├── security.bs.xlf │ │ │ │ ├── security.ca.xlf │ │ │ │ ├── security.cs.xlf │ │ │ │ ├── security.cy.xlf │ │ │ │ ├── security.da.xlf │ │ │ │ ├── security.de.xlf │ │ │ │ ├── security.el.xlf │ │ │ │ ├── security.en.xlf │ │ │ │ ├── security.es.xlf │ │ │ │ ├── security.et.xlf │ │ │ │ ├── security.eu.xlf │ │ │ │ ├── security.fa.xlf │ │ │ │ ├── security.fi.xlf │ │ │ │ ├── security.fr.xlf │ │ │ │ ├── security.gl.xlf │ │ │ │ ├── security.he.xlf │ │ │ │ ├── security.hr.xlf │ │ │ │ ├── security.hu.xlf │ │ │ │ ├── security.hy.xlf │ │ │ │ ├── security.id.xlf │ │ │ │ ├── security.it.xlf │ │ │ │ ├── security.ja.xlf │ │ │ │ ├── security.lb.xlf │ │ │ │ ├── security.lt.xlf │ │ │ │ ├── security.lv.xlf │ │ │ │ ├── security.mk.xlf │ │ │ │ ├── security.mn.xlf │ │ │ │ ├── security.my.xlf │ │ │ │ ├── security.nb.xlf │ │ │ │ ├── security.nl.xlf │ │ │ │ ├── security.nn.xlf │ │ │ │ ├── security.no.xlf │ │ │ │ ├── security.pl.xlf │ │ │ │ ├── security.pt.xlf │ │ │ │ ├── security.pt_BR.xlf │ │ │ │ ├── security.ro.xlf │ │ │ │ ├── security.ru.xlf │ │ │ │ ├── security.sk.xlf │ │ │ │ ├── security.sl.xlf │ │ │ │ ├── security.sq.xlf │ │ │ │ ├── security.sr_Cyrl.xlf │ │ │ │ ├── security.sr_Latn.xlf │ │ │ │ ├── security.sv.xlf │ │ │ │ ├── security.th.xlf │ │ │ │ ├── security.tl.xlf │ │ │ │ ├── security.tr.xlf │ │ │ │ ├── security.uk.xlf │ │ │ │ ├── security.ur.xlf │ │ │ │ ├── security.uz.xlf │ │ │ │ ├── security.vi.xlf │ │ │ │ ├── security.zh_CN.xlf │ │ │ │ └── security.zh_TW.xlf │ │ ├── Role │ │ │ ├── Role.php │ │ │ ├── RoleHierarchy.php │ │ │ ├── RoleHierarchyInterface.php │ │ │ └── SwitchUserRole.php │ │ ├── Security.php │ │ ├── Signature │ │ │ ├── Exception │ │ │ │ ├── ExpiredSignatureException.php │ │ │ │ └── InvalidSignatureException.php │ │ │ ├── ExpiredSignatureStorage.php │ │ │ └── SignatureHasher.php │ │ ├── Test │ │ │ └── AccessDecisionStrategyTestCase.php │ │ ├── User │ │ │ ├── AttributesBasedUserProviderInterface.php │ │ │ ├── ChainUserChecker.php │ │ │ ├── ChainUserProvider.php │ │ │ ├── EquatableInterface.php │ │ │ ├── InMemoryUser.php │ │ │ ├── InMemoryUserChecker.php │ │ │ ├── InMemoryUserProvider.php │ │ │ ├── LegacyPasswordAuthenticatedUserInterface.php │ │ │ ├── MissingUserProvider.php │ │ │ ├── OidcUser.php │ │ │ ├── PasswordAuthenticatedUserInterface.php │ │ │ ├── PasswordUpgraderInterface.php │ │ │ ├── UserCheckerInterface.php │ │ │ ├── UserInterface.php │ │ │ └── UserProviderInterface.php │ │ ├── Validator │ │ │ └── Constraints │ │ │ │ ├── UserPassword.php │ │ │ │ └── UserPasswordValidator.php │ │ └── composer.json │ ├── security-csrf │ │ ├── CHANGELOG.md │ │ ├── CsrfToken.php │ │ ├── CsrfTokenManager.php │ │ ├── CsrfTokenManagerInterface.php │ │ ├── Exception │ │ │ └── TokenNotFoundException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TokenGenerator │ │ │ ├── TokenGeneratorInterface.php │ │ │ └── UriSafeTokenGenerator.php │ │ ├── TokenStorage │ │ │ ├── ClearableTokenStorageInterface.php │ │ │ ├── NativeSessionTokenStorage.php │ │ │ ├── SessionTokenStorage.php │ │ │ └── TokenStorageInterface.php │ │ └── composer.json │ ├── security-http │ │ ├── AccessMap.php │ │ ├── AccessMapInterface.php │ │ ├── AccessToken │ │ │ ├── AccessTokenExtractorInterface.php │ │ │ ├── AccessTokenHandlerInterface.php │ │ │ ├── ChainAccessTokenExtractor.php │ │ │ ├── FormEncodedBodyExtractor.php │ │ │ ├── HeaderAccessTokenExtractor.php │ │ │ ├── Oidc │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ │ └── MissingClaimException.php │ │ │ │ ├── OidcTokenHandler.php │ │ │ │ ├── OidcTrait.php │ │ │ │ └── OidcUserInfoTokenHandler.php │ │ │ └── QueryAccessTokenExtractor.php │ │ ├── Attribute │ │ │ ├── CurrentUser.php │ │ │ └── IsGranted.php │ │ ├── Authentication │ │ │ ├── AuthenticationFailureHandlerInterface.php │ │ │ ├── AuthenticationSuccessHandlerInterface.php │ │ │ ├── AuthenticationUtils.php │ │ │ ├── AuthenticatorManager.php │ │ │ ├── AuthenticatorManagerInterface.php │ │ │ ├── CustomAuthenticationFailureHandler.php │ │ │ ├── CustomAuthenticationSuccessHandler.php │ │ │ ├── DefaultAuthenticationFailureHandler.php │ │ │ ├── DefaultAuthenticationSuccessHandler.php │ │ │ └── UserAuthenticatorInterface.php │ │ ├── Authenticator │ │ │ ├── AbstractAuthenticator.php │ │ │ ├── AbstractLoginFormAuthenticator.php │ │ │ ├── AbstractPreAuthenticatedAuthenticator.php │ │ │ ├── AccessTokenAuthenticator.php │ │ │ ├── AuthenticatorInterface.php │ │ │ ├── Debug │ │ │ │ ├── TraceableAuthenticator.php │ │ │ │ └── TraceableAuthenticatorManagerListener.php │ │ │ ├── FallbackUserLoader.php │ │ │ ├── FormLoginAuthenticator.php │ │ │ ├── HttpBasicAuthenticator.php │ │ │ ├── InteractiveAuthenticatorInterface.php │ │ │ ├── JsonLoginAuthenticator.php │ │ │ ├── LoginLinkAuthenticator.php │ │ │ ├── Passport │ │ │ │ ├── Badge │ │ │ │ │ ├── BadgeInterface.php │ │ │ │ │ ├── CsrfTokenBadge.php │ │ │ │ │ ├── PasswordUpgradeBadge.php │ │ │ │ │ ├── PreAuthenticatedUserBadge.php │ │ │ │ │ ├── RememberMeBadge.php │ │ │ │ │ └── UserBadge.php │ │ │ │ ├── Credentials │ │ │ │ │ ├── CredentialsInterface.php │ │ │ │ │ ├── CustomCredentials.php │ │ │ │ │ └── PasswordCredentials.php │ │ │ │ ├── Passport.php │ │ │ │ └── SelfValidatingPassport.php │ │ │ ├── RememberMeAuthenticator.php │ │ │ ├── RemoteUserAuthenticator.php │ │ │ ├── Token │ │ │ │ └── PostAuthenticationToken.php │ │ │ └── X509Authenticator.php │ │ ├── Authorization │ │ │ └── AccessDeniedHandlerInterface.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── SecurityTokenValueResolver.php │ │ │ └── UserValueResolver.php │ │ ├── EntryPoint │ │ │ ├── AuthenticationEntryPointInterface.php │ │ │ └── Exception │ │ │ │ └── NotAnEntryPointException.php │ │ ├── Event │ │ │ ├── AuthenticationTokenCreatedEvent.php │ │ │ ├── CheckPassportEvent.php │ │ │ ├── InteractiveLoginEvent.php │ │ │ ├── LazyResponseEvent.php │ │ │ ├── LoginFailureEvent.php │ │ │ ├── LoginSuccessEvent.php │ │ │ ├── LogoutEvent.php │ │ │ ├── SwitchUserEvent.php │ │ │ └── TokenDeauthenticatedEvent.php │ │ ├── EventListener │ │ │ ├── CheckCredentialsListener.php │ │ │ ├── CheckRememberMeConditionsListener.php │ │ │ ├── ClearSiteDataLogoutListener.php │ │ │ ├── CookieClearingLogoutListener.php │ │ │ ├── CsrfProtectionListener.php │ │ │ ├── CsrfTokenClearingLogoutListener.php │ │ │ ├── DefaultLogoutListener.php │ │ │ ├── IsGrantedAttributeListener.php │ │ │ ├── LoginThrottlingListener.php │ │ │ ├── PasswordMigratingListener.php │ │ │ ├── RememberMeListener.php │ │ │ ├── SessionLogoutListener.php │ │ │ ├── SessionStrategyListener.php │ │ │ ├── UserCheckerListener.php │ │ │ └── UserProviderListener.php │ │ ├── Firewall.php │ │ ├── Firewall │ │ │ ├── AbstractListener.php │ │ │ ├── AccessListener.php │ │ │ ├── AuthenticatorManagerListener.php │ │ │ ├── ChannelListener.php │ │ │ ├── ContextListener.php │ │ │ ├── ExceptionListener.php │ │ │ ├── FirewallListenerInterface.php │ │ │ ├── LogoutListener.php │ │ │ └── SwitchUserListener.php │ │ ├── FirewallMap.php │ │ ├── FirewallMapInterface.php │ │ ├── HttpUtils.php │ │ ├── Impersonate │ │ │ └── ImpersonateUrlGenerator.php │ │ ├── LICENSE │ │ ├── LoginLink │ │ │ ├── Exception │ │ │ │ ├── ExpiredLoginLinkException.php │ │ │ │ ├── InvalidLoginLinkAuthenticationException.php │ │ │ │ ├── InvalidLoginLinkException.php │ │ │ │ └── InvalidLoginLinkExceptionInterface.php │ │ │ ├── LoginLinkDetails.php │ │ │ ├── LoginLinkHandler.php │ │ │ ├── LoginLinkHandlerInterface.php │ │ │ └── LoginLinkNotification.php │ │ ├── Logout │ │ │ └── LogoutUrlGenerator.php │ │ ├── ParameterBagUtils.php │ │ ├── README.md │ │ ├── RateLimiter │ │ │ └── DefaultLoginRateLimiter.php │ │ ├── RememberMe │ │ │ ├── AbstractRememberMeHandler.php │ │ │ ├── PersistentRememberMeHandler.php │ │ │ ├── RememberMeDetails.php │ │ │ ├── RememberMeHandlerInterface.php │ │ │ ├── ResponseListener.php │ │ │ └── SignatureRememberMeHandler.php │ │ ├── SecurityEvents.php │ │ ├── SecurityRequestAttributes.php │ │ ├── Session │ │ │ ├── SessionAuthenticationStrategy.php │ │ │ └── SessionAuthenticationStrategyInterface.php │ │ ├── Util │ │ │ └── TargetPathTrait.php │ │ └── composer.json │ ├── serializer │ │ ├── Annotation │ │ │ ├── Context.php │ │ │ ├── DiscriminatorMap.php │ │ │ ├── Groups.php │ │ │ ├── Ignore.php │ │ │ ├── MaxDepth.php │ │ │ ├── SerializedName.php │ │ │ └── SerializedPath.php │ │ ├── Attribute │ │ │ ├── Context.php │ │ │ ├── DiscriminatorMap.php │ │ │ ├── Groups.php │ │ │ ├── Ignore.php │ │ │ ├── MaxDepth.php │ │ │ ├── SerializedName.php │ │ │ └── SerializedPath.php │ │ ├── CHANGELOG.md │ │ ├── CacheWarmer │ │ │ └── CompiledClassMetadataCacheWarmer.php │ │ ├── Command │ │ │ └── DebugCommand.php │ │ ├── Context │ │ │ ├── ContextBuilderInterface.php │ │ │ ├── ContextBuilderTrait.php │ │ │ ├── Encoder │ │ │ │ ├── CsvEncoderContextBuilder.php │ │ │ │ ├── JsonEncoderContextBuilder.php │ │ │ │ ├── XmlEncoderContextBuilder.php │ │ │ │ └── YamlEncoderContextBuilder.php │ │ │ ├── Normalizer │ │ │ │ ├── AbstractNormalizerContextBuilder.php │ │ │ │ ├── AbstractObjectNormalizerContextBuilder.php │ │ │ │ ├── BackedEnumNormalizerContextBuilder.php │ │ │ │ ├── ConstraintViolationListNormalizerContextBuilder.php │ │ │ │ ├── DateIntervalNormalizerContextBuilder.php │ │ │ │ ├── DateTimeNormalizerContextBuilder.php │ │ │ │ ├── FormErrorNormalizerContextBuilder.php │ │ │ │ ├── GetSetMethodNormalizerContextBuilder.php │ │ │ │ ├── JsonSerializableNormalizerContextBuilder.php │ │ │ │ ├── ObjectNormalizerContextBuilder.php │ │ │ │ ├── ProblemNormalizerContextBuilder.php │ │ │ │ ├── PropertyNormalizerContextBuilder.php │ │ │ │ ├── UidNormalizerContextBuilder.php │ │ │ │ └── UnwrappingDenormalizerContextBuilder.php │ │ │ └── SerializerContextBuilder.php │ │ ├── DataCollector │ │ │ └── SerializerDataCollector.php │ │ ├── Debug │ │ │ ├── TraceableEncoder.php │ │ │ ├── TraceableNormalizer.php │ │ │ └── TraceableSerializer.php │ │ ├── DependencyInjection │ │ │ └── SerializerPass.php │ │ ├── Encoder │ │ │ ├── ChainDecoder.php │ │ │ ├── ChainEncoder.php │ │ │ ├── ContextAwareDecoderInterface.php │ │ │ ├── ContextAwareEncoderInterface.php │ │ │ ├── CsvEncoder.php │ │ │ ├── DecoderInterface.php │ │ │ ├── EncoderInterface.php │ │ │ ├── JsonDecode.php │ │ │ ├── JsonEncode.php │ │ │ ├── JsonEncoder.php │ │ │ ├── NormalizationAwareInterface.php │ │ │ ├── XmlEncoder.php │ │ │ └── YamlEncoder.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── CircularReferenceException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExtraAttributesException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── MappingException.php │ │ │ ├── MissingConstructorArgumentsException.php │ │ │ ├── NotEncodableValueException.php │ │ │ ├── NotNormalizableValueException.php │ │ │ ├── PartialDenormalizationException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnexpectedValueException.php │ │ │ ├── UnsupportedException.php │ │ │ └── UnsupportedFormatException.php │ │ ├── Extractor │ │ │ ├── ObjectPropertyListExtractor.php │ │ │ └── ObjectPropertyListExtractorInterface.php │ │ ├── LICENSE │ │ ├── Mapping │ │ │ ├── AttributeMetadata.php │ │ │ ├── AttributeMetadataInterface.php │ │ │ ├── ClassDiscriminatorFromClassMetadata.php │ │ │ ├── ClassDiscriminatorMapping.php │ │ │ ├── ClassDiscriminatorResolverInterface.php │ │ │ ├── ClassMetadata.php │ │ │ ├── ClassMetadataInterface.php │ │ │ ├── Factory │ │ │ │ ├── CacheClassMetadataFactory.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── ClassMetadataFactoryCompiler.php │ │ │ │ ├── ClassMetadataFactoryInterface.php │ │ │ │ ├── ClassResolverTrait.php │ │ │ │ └── CompiledClassMetadataFactory.php │ │ │ └── Loader │ │ │ │ ├── AnnotationLoader.php │ │ │ │ ├── AttributeLoader.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── LoaderChain.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── serializer-mapping │ │ │ │ └── serializer-mapping-1.0.xsd │ │ ├── NameConverter │ │ │ ├── AdvancedNameConverterInterface.php │ │ │ ├── CamelCaseToSnakeCaseNameConverter.php │ │ │ ├── MetadataAwareNameConverter.php │ │ │ └── NameConverterInterface.php │ │ ├── Normalizer │ │ │ ├── AbstractNormalizer.php │ │ │ ├── AbstractObjectNormalizer.php │ │ │ ├── ArrayDenormalizer.php │ │ │ ├── BackedEnumNormalizer.php │ │ │ ├── CacheableSupportsMethodInterface.php │ │ │ ├── ConstraintViolationListNormalizer.php │ │ │ ├── ContextAwareDenormalizerInterface.php │ │ │ ├── ContextAwareNormalizerInterface.php │ │ │ ├── CustomNormalizer.php │ │ │ ├── DataUriNormalizer.php │ │ │ ├── DateIntervalNormalizer.php │ │ │ ├── DateTimeNormalizer.php │ │ │ ├── DateTimeZoneNormalizer.php │ │ │ ├── DenormalizableInterface.php │ │ │ ├── DenormalizerAwareInterface.php │ │ │ ├── DenormalizerAwareTrait.php │ │ │ ├── DenormalizerInterface.php │ │ │ ├── FormErrorNormalizer.php │ │ │ ├── GetSetMethodNormalizer.php │ │ │ ├── JsonSerializableNormalizer.php │ │ │ ├── MimeMessageNormalizer.php │ │ │ ├── NormalizableInterface.php │ │ │ ├── NormalizerAwareInterface.php │ │ │ ├── NormalizerAwareTrait.php │ │ │ ├── NormalizerInterface.php │ │ │ ├── ObjectNormalizer.php │ │ │ ├── ObjectToPopulateTrait.php │ │ │ ├── ProblemNormalizer.php │ │ │ ├── PropertyNormalizer.php │ │ │ ├── TranslatableNormalizer.php │ │ │ ├── UidNormalizer.php │ │ │ └── UnwrappingDenormalizer.php │ │ ├── README.md │ │ ├── Serializer.php │ │ ├── SerializerAwareInterface.php │ │ ├── SerializerAwareTrait.php │ │ ├── SerializerInterface.php │ │ └── composer.json │ ├── service-contracts │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceCollectionInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceMethodsSubscriberTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ ├── ServiceLocatorTest.php │ │ │ └── ServiceLocatorTestCase.php │ │ └── composer.json │ ├── stimulus-bundle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── controllers.d.ts │ │ │ │ ├── controllers.js │ │ │ │ ├── loader.d.ts │ │ │ │ └── loader.js │ │ │ ├── package.json │ │ │ └── vitest.config.mjs │ │ ├── composer.json │ │ ├── config │ │ │ └── services.php │ │ └── src │ │ │ ├── AssetMapper │ │ │ ├── AutoImportLocator.php │ │ │ ├── ControllersMapGenerator.php │ │ │ ├── MappedControllerAsset.php │ │ │ ├── MappedControllerAutoImport.php │ │ │ └── StimulusLoaderJavaScriptCompiler.php │ │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ └── RemoveAssetMapperServicesCompiler.php │ │ │ └── StimulusExtension.php │ │ │ ├── Dto │ │ │ └── StimulusAttributes.php │ │ │ ├── Helper │ │ │ └── StimulusHelper.php │ │ │ ├── StimulusBundle.php │ │ │ ├── Twig │ │ │ ├── StimulusTwigExtension.php │ │ │ ├── UxControllersTwigExtension.php │ │ │ └── UxControllersTwigRuntime.php │ │ │ └── Ux │ │ │ ├── UxPackageMetadata.php │ │ │ └── UxPackageReader.php │ ├── stopwatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Section.php │ │ ├── Stopwatch.php │ │ ├── StopwatchEvent.php │ │ ├── StopwatchPeriod.php │ │ └── composer.json │ ├── string │ │ ├── AbstractString.php │ │ ├── AbstractUnicodeString.php │ │ ├── ByteString.php │ │ ├── CHANGELOG.md │ │ ├── CodePointString.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Inflector │ │ │ ├── EnglishInflector.php │ │ │ ├── FrenchInflector.php │ │ │ └── InflectorInterface.php │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── data │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ └── wcswidth_table_zero.php │ │ │ └── functions.php │ │ ├── Slugger │ │ │ ├── AsciiSlugger.php │ │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json │ ├── translation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── translation │ │ ├── CHANGELOG.md │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── CatalogueMetadataAwareInterface.php │ │ ├── Command │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ ├── LoggingTranslatorPass.php │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ ├── TranslatorPass.php │ │ │ └── TranslatorPathsPass.php │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingRequiredOptionException.php │ │ │ ├── NotFoundResourceException.php │ │ │ ├── ProviderException.php │ │ │ ├── ProviderExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpAstExtractor.php │ │ │ ├── PhpExtractor.php │ │ │ ├── PhpStringTokenParser.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── ConstraintVisitor.php │ │ │ │ ├── TransMethodVisitor.php │ │ │ │ └── TranslatableMessageVisitor.php │ │ ├── Formatter │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ ├── IdentityTranslator.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── CsvFileLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── IcuDatFileLoader.php │ │ │ ├── IcuResFileLoader.php │ │ │ ├── IniFileLoader.php │ │ │ ├── JsonFileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── MoFileLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── PoFileLoader.php │ │ │ ├── QtFileLoader.php │ │ │ ├── XliffFileLoader.php │ │ │ └── YamlFileLoader.php │ │ ├── LocaleSwitcher.php │ │ ├── LoggingTranslator.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCatalogueInterface.php │ │ ├── MetadataAwareInterface.php │ │ ├── Provider │ │ │ ├── AbstractProviderFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FilteringProvider.php │ │ │ ├── NullProvider.php │ │ │ ├── NullProviderFactory.php │ │ │ ├── ProviderFactoryInterface.php │ │ │ ├── ProviderInterface.php │ │ │ ├── TranslationProviderCollection.php │ │ │ └── TranslationProviderCollectionFactory.php │ │ ├── PseudoLocalizationTranslator.php │ │ ├── README.md │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── translation-status.php │ │ │ ├── data │ │ │ │ └── parents.json │ │ │ ├── functions.php │ │ │ └── schemas │ │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── Test │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ ├── TranslatableMessage.php │ │ ├── Translator.php │ │ ├── TranslatorBag.php │ │ ├── TranslatorBagInterface.php │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ ├── twig-bridge │ │ ├── AppVariable.php │ │ ├── Attribute │ │ │ └── Template.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── DebugCommand.php │ │ │ └── LintCommand.php │ │ ├── DataCollector │ │ │ └── TwigDataCollector.php │ │ ├── ErrorRenderer │ │ │ └── TwigErrorRenderer.php │ │ ├── EventListener │ │ │ └── TemplateAttributeListener.php │ │ ├── Extension │ │ │ ├── AssetExtension.php │ │ │ ├── CodeExtension.php │ │ │ ├── CsrfExtension.php │ │ │ ├── CsrfRuntime.php │ │ │ ├── DumpExtension.php │ │ │ ├── ExpressionExtension.php │ │ │ ├── FormExtension.php │ │ │ ├── HtmlSanitizerExtension.php │ │ │ ├── HttpFoundationExtension.php │ │ │ ├── HttpKernelExtension.php │ │ │ ├── HttpKernelRuntime.php │ │ │ ├── ImportMapExtension.php │ │ │ ├── ImportMapRuntime.php │ │ │ ├── LogoutUrlExtension.php │ │ │ ├── ProfilerExtension.php │ │ │ ├── RoutingExtension.php │ │ │ ├── SecurityExtension.php │ │ │ ├── SerializerExtension.php │ │ │ ├── SerializerRuntime.php │ │ │ ├── StopwatchExtension.php │ │ │ ├── TranslationExtension.php │ │ │ ├── WebLinkExtension.php │ │ │ ├── WorkflowExtension.php │ │ │ └── YamlExtension.php │ │ ├── Form │ │ │ └── TwigRendererEngine.php │ │ ├── LICENSE │ │ ├── Mime │ │ │ ├── BodyRenderer.php │ │ │ ├── NotificationEmail.php │ │ │ ├── TemplatedEmail.php │ │ │ └── WrappedTemplatedEmail.php │ │ ├── Node │ │ │ ├── DumpNode.php │ │ │ ├── FormThemeNode.php │ │ │ ├── RenderBlockNode.php │ │ │ ├── SearchAndRenderBlockNode.php │ │ │ ├── StopwatchNode.php │ │ │ ├── TransDefaultDomainNode.php │ │ │ └── TransNode.php │ │ ├── NodeVisitor │ │ │ ├── Scope.php │ │ │ ├── TranslationDefaultDomainNodeVisitor.php │ │ │ └── TranslationNodeVisitor.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── views │ │ │ │ ├── Email │ │ │ │ ├── default │ │ │ │ │ └── notification │ │ │ │ │ │ ├── body.html.twig │ │ │ │ │ │ └── body.txt.twig │ │ │ │ └── zurb_2 │ │ │ │ │ ├── main.css │ │ │ │ │ └── notification │ │ │ │ │ ├── body.html.twig │ │ │ │ │ ├── body.txt.twig │ │ │ │ │ ├── content_markdown.html.twig │ │ │ │ │ └── local.css │ │ │ │ └── Form │ │ │ │ ├── bootstrap_3_horizontal_layout.html.twig │ │ │ │ ├── bootstrap_3_layout.html.twig │ │ │ │ ├── bootstrap_4_horizontal_layout.html.twig │ │ │ │ ├── bootstrap_4_layout.html.twig │ │ │ │ ├── bootstrap_5_horizontal_layout.html.twig │ │ │ │ ├── bootstrap_5_layout.html.twig │ │ │ │ ├── bootstrap_base_layout.html.twig │ │ │ │ ├── form_div_layout.html.twig │ │ │ │ ├── form_table_layout.html.twig │ │ │ │ ├── foundation_5_layout.html.twig │ │ │ │ ├── foundation_6_layout.html.twig │ │ │ │ └── tailwind_2_layout.html.twig │ │ ├── Test │ │ │ ├── FormLayoutTestCase.php │ │ │ └── Traits │ │ │ │ └── RuntimeLoaderProvider.php │ │ ├── TokenParser │ │ │ ├── DumpTokenParser.php │ │ │ ├── FormThemeTokenParser.php │ │ │ ├── StopwatchTokenParser.php │ │ │ ├── TransDefaultDomainTokenParser.php │ │ │ └── TransTokenParser.php │ │ ├── Translation │ │ │ └── TwigExtractor.php │ │ ├── UndefinedCallableHandler.php │ │ └── composer.json │ ├── twig-bundle │ │ ├── CHANGELOG.md │ │ ├── CacheWarmer │ │ │ └── TemplateCacheWarmer.php │ │ ├── Command │ │ │ └── LintCommand.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── ExtensionPass.php │ │ │ │ ├── RuntimeLoaderPass.php │ │ │ │ ├── TwigEnvironmentPass.php │ │ │ │ └── TwigLoaderPass.php │ │ │ ├── Configuration.php │ │ │ ├── Configurator │ │ │ │ └── EnvironmentConfigurator.php │ │ │ └── TwigExtension.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── console.php │ │ │ │ ├── form.php │ │ │ │ ├── importmap.php │ │ │ │ ├── mailer.php │ │ │ │ ├── schema │ │ │ │ └── twig-1.0.xsd │ │ │ │ └── twig.php │ │ ├── TemplateIterator.php │ │ ├── TwigBundle.php │ │ └── composer.json │ ├── ux-turbo │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── turbo_controller.d.ts │ │ │ │ ├── turbo_controller.js │ │ │ │ ├── turbo_stream_controller.d.ts │ │ │ │ └── turbo_stream_controller.js │ │ │ ├── package.json │ │ │ ├── playwright.config.ts │ │ │ └── vitest.config.mjs │ │ ├── composer.json │ │ ├── config │ │ │ └── services.php │ │ ├── docker-compose.yml │ │ ├── src │ │ │ ├── Attribute │ │ │ │ └── Broadcast.php │ │ │ ├── Bridge │ │ │ │ └── Mercure │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── TopicSet.php │ │ │ │ │ └── TurboStreamListenRenderer.php │ │ │ ├── Broadcaster │ │ │ │ ├── BroadcasterInterface.php │ │ │ │ ├── IdAccessor.php │ │ │ │ ├── ImuxBroadcaster.php │ │ │ │ └── TwigBroadcaster.php │ │ │ ├── DependencyInjection │ │ │ │ ├── Compiler │ │ │ │ │ └── RegisterMercureHubsPass.php │ │ │ │ ├── Configuration.php │ │ │ │ └── TurboExtension.php │ │ │ ├── Doctrine │ │ │ │ ├── BroadcastListener.php │ │ │ │ └── ClassUtil.php │ │ │ ├── Helper │ │ │ │ └── TurboStream.php │ │ │ ├── Request │ │ │ │ └── RequestListener.php │ │ │ ├── TurboBundle.php │ │ │ ├── TurboStreamResponse.php │ │ │ └── Twig │ │ │ │ ├── TurboRuntime.php │ │ │ │ ├── TurboStreamListenRendererInterface.php │ │ │ │ ├── TurboStreamListenRendererWithOptionsInterface.php │ │ │ │ └── TwigExtension.php │ │ └── templates │ │ │ └── components │ │ │ ├── Frame.html.twig │ │ │ ├── Stream.html.twig │ │ │ └── Stream │ │ │ ├── After.html.twig │ │ │ ├── Append.html.twig │ │ │ ├── Before.html.twig │ │ │ ├── Prepend.html.twig │ │ │ ├── Refresh.html.twig │ │ │ ├── Remove.html.twig │ │ │ ├── Replace.html.twig │ │ │ └── Update.html.twig │ ├── validator │ │ ├── Attribute │ │ │ └── HasNamedArguments.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── DebugCommand.php │ │ ├── Constraint.php │ │ ├── ConstraintValidator.php │ │ ├── ConstraintValidatorFactory.php │ │ ├── ConstraintValidatorFactoryInterface.php │ │ ├── ConstraintValidatorInterface.php │ │ ├── ConstraintViolation.php │ │ ├── ConstraintViolationInterface.php │ │ ├── ConstraintViolationList.php │ │ ├── ConstraintViolationListInterface.php │ │ ├── Constraints │ │ │ ├── AbstractComparison.php │ │ │ ├── AbstractComparisonValidator.php │ │ │ ├── All.php │ │ │ ├── AllValidator.php │ │ │ ├── AtLeastOneOf.php │ │ │ ├── AtLeastOneOfValidator.php │ │ │ ├── Bic.php │ │ │ ├── BicValidator.php │ │ │ ├── Blank.php │ │ │ ├── BlankValidator.php │ │ │ ├── Callback.php │ │ │ ├── CallbackValidator.php │ │ │ ├── CardScheme.php │ │ │ ├── CardSchemeValidator.php │ │ │ ├── Cascade.php │ │ │ ├── Choice.php │ │ │ ├── ChoiceValidator.php │ │ │ ├── Cidr.php │ │ │ ├── CidrValidator.php │ │ │ ├── Collection.php │ │ │ ├── CollectionValidator.php │ │ │ ├── Composite.php │ │ │ ├── Compound.php │ │ │ ├── CompoundValidator.php │ │ │ ├── Count.php │ │ │ ├── CountValidator.php │ │ │ ├── Country.php │ │ │ ├── CountryValidator.php │ │ │ ├── CssColor.php │ │ │ ├── CssColorValidator.php │ │ │ ├── Currency.php │ │ │ ├── CurrencyValidator.php │ │ │ ├── Date.php │ │ │ ├── DateTime.php │ │ │ ├── DateTimeValidator.php │ │ │ ├── DateValidator.php │ │ │ ├── DisableAutoMapping.php │ │ │ ├── DivisibleBy.php │ │ │ ├── DivisibleByValidator.php │ │ │ ├── Email.php │ │ │ ├── EmailValidator.php │ │ │ ├── EnableAutoMapping.php │ │ │ ├── EqualTo.php │ │ │ ├── EqualToValidator.php │ │ │ ├── Existence.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionLanguageProvider.php │ │ │ ├── ExpressionLanguageSyntax.php │ │ │ ├── ExpressionLanguageSyntaxValidator.php │ │ │ ├── ExpressionSyntax.php │ │ │ ├── ExpressionSyntaxValidator.php │ │ │ ├── ExpressionValidator.php │ │ │ ├── File.php │ │ │ ├── FileValidator.php │ │ │ ├── GreaterThan.php │ │ │ ├── GreaterThanOrEqual.php │ │ │ ├── GreaterThanOrEqualValidator.php │ │ │ ├── GreaterThanValidator.php │ │ │ ├── GroupSequence.php │ │ │ ├── GroupSequenceProvider.php │ │ │ ├── Hostname.php │ │ │ ├── HostnameValidator.php │ │ │ ├── Iban.php │ │ │ ├── IbanValidator.php │ │ │ ├── IdenticalTo.php │ │ │ ├── IdenticalToValidator.php │ │ │ ├── Image.php │ │ │ ├── ImageValidator.php │ │ │ ├── Ip.php │ │ │ ├── IpValidator.php │ │ │ ├── IsFalse.php │ │ │ ├── IsFalseValidator.php │ │ │ ├── IsNull.php │ │ │ ├── IsNullValidator.php │ │ │ ├── IsTrue.php │ │ │ ├── IsTrueValidator.php │ │ │ ├── Isbn.php │ │ │ ├── IsbnValidator.php │ │ │ ├── Isin.php │ │ │ ├── IsinValidator.php │ │ │ ├── Issn.php │ │ │ ├── IssnValidator.php │ │ │ ├── Json.php │ │ │ ├── JsonValidator.php │ │ │ ├── Language.php │ │ │ ├── LanguageValidator.php │ │ │ ├── Length.php │ │ │ ├── LengthValidator.php │ │ │ ├── LessThan.php │ │ │ ├── LessThanOrEqual.php │ │ │ ├── LessThanOrEqualValidator.php │ │ │ ├── LessThanValidator.php │ │ │ ├── Locale.php │ │ │ ├── LocaleValidator.php │ │ │ ├── Luhn.php │ │ │ ├── LuhnValidator.php │ │ │ ├── Negative.php │ │ │ ├── NegativeOrZero.php │ │ │ ├── NoSuspiciousCharacters.php │ │ │ ├── NoSuspiciousCharactersValidator.php │ │ │ ├── NotBlank.php │ │ │ ├── NotBlankValidator.php │ │ │ ├── NotCompromisedPassword.php │ │ │ ├── NotCompromisedPasswordValidator.php │ │ │ ├── NotEqualTo.php │ │ │ ├── NotEqualToValidator.php │ │ │ ├── NotIdenticalTo.php │ │ │ ├── NotIdenticalToValidator.php │ │ │ ├── NotNull.php │ │ │ ├── NotNullValidator.php │ │ │ ├── Optional.php │ │ │ ├── PasswordStrength.php │ │ │ ├── PasswordStrengthValidator.php │ │ │ ├── Positive.php │ │ │ ├── PositiveOrZero.php │ │ │ ├── Range.php │ │ │ ├── RangeValidator.php │ │ │ ├── Regex.php │ │ │ ├── RegexValidator.php │ │ │ ├── Required.php │ │ │ ├── Sequentially.php │ │ │ ├── SequentiallyValidator.php │ │ │ ├── Time.php │ │ │ ├── TimeValidator.php │ │ │ ├── Timezone.php │ │ │ ├── TimezoneValidator.php │ │ │ ├── Traverse.php │ │ │ ├── Type.php │ │ │ ├── TypeValidator.php │ │ │ ├── Ulid.php │ │ │ ├── UlidValidator.php │ │ │ ├── Unique.php │ │ │ ├── UniqueValidator.php │ │ │ ├── Url.php │ │ │ ├── UrlValidator.php │ │ │ ├── Uuid.php │ │ │ ├── UuidValidator.php │ │ │ ├── Valid.php │ │ │ ├── ValidValidator.php │ │ │ ├── When.php │ │ │ ├── WhenValidator.php │ │ │ └── ZeroComparisonConstraintTrait.php │ │ ├── ContainerConstraintValidatorFactory.php │ │ ├── Context │ │ │ ├── ExecutionContext.php │ │ │ ├── ExecutionContextFactory.php │ │ │ ├── ExecutionContextFactoryInterface.php │ │ │ └── ExecutionContextInterface.php │ │ ├── DataCollector │ │ │ └── ValidatorDataCollector.php │ │ ├── DependencyInjection │ │ │ ├── AddAutoMappingConfigurationPass.php │ │ │ ├── AddConstraintValidatorsPass.php │ │ │ └── AddValidatorInitializersPass.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ConstraintDefinitionException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── GroupDefinitionException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionsException.php │ │ │ ├── LogicException.php │ │ │ ├── MappingException.php │ │ │ ├── MissingOptionsException.php │ │ │ ├── NoSuchMetadataException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ ├── UnexpectedValueException.php │ │ │ ├── UnsupportedMetadataException.php │ │ │ ├── ValidationFailedException.php │ │ │ └── ValidatorException.php │ │ ├── GroupProviderInterface.php │ │ ├── GroupSequenceProviderInterface.php │ │ ├── LICENSE │ │ ├── Mapping │ │ │ ├── AutoMappingStrategy.php │ │ │ ├── CascadingStrategy.php │ │ │ ├── ClassMetadata.php │ │ │ ├── ClassMetadataInterface.php │ │ │ ├── Factory │ │ │ │ ├── BlackHoleMetadataFactory.php │ │ │ │ ├── LazyLoadingMetadataFactory.php │ │ │ │ └── MetadataFactoryInterface.php │ │ │ ├── GenericMetadata.php │ │ │ ├── GetterMetadata.php │ │ │ ├── Loader │ │ │ │ ├── AbstractLoader.php │ │ │ │ ├── AnnotationLoader.php │ │ │ │ ├── AttributeLoader.php │ │ │ │ ├── AutoMappingTrait.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── FilesLoader.php │ │ │ │ ├── LoaderChain.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── PropertyInfoLoader.php │ │ │ │ ├── StaticMethodLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── XmlFilesLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ ├── YamlFilesLoader.php │ │ │ │ └── schema │ │ │ │ │ └── dic │ │ │ │ │ └── constraint-mapping │ │ │ │ │ └── constraint-mapping-1.0.xsd │ │ │ ├── MemberMetadata.php │ │ │ ├── MetadataInterface.php │ │ │ ├── PropertyMetadata.php │ │ │ ├── PropertyMetadataInterface.php │ │ │ └── TraversalStrategy.php │ │ ├── ObjectInitializerInterface.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── translations │ │ │ │ ├── validators.af.xlf │ │ │ │ ├── validators.ar.xlf │ │ │ │ ├── validators.az.xlf │ │ │ │ ├── validators.be.xlf │ │ │ │ ├── validators.bg.xlf │ │ │ │ ├── validators.bs.xlf │ │ │ │ ├── validators.ca.xlf │ │ │ │ ├── validators.cs.xlf │ │ │ │ ├── validators.cy.xlf │ │ │ │ ├── validators.da.xlf │ │ │ │ ├── validators.de.xlf │ │ │ │ ├── validators.el.xlf │ │ │ │ ├── validators.en.xlf │ │ │ │ ├── validators.es.xlf │ │ │ │ ├── validators.et.xlf │ │ │ │ ├── validators.eu.xlf │ │ │ │ ├── validators.fa.xlf │ │ │ │ ├── validators.fi.xlf │ │ │ │ ├── validators.fr.xlf │ │ │ │ ├── validators.gl.xlf │ │ │ │ ├── validators.he.xlf │ │ │ │ ├── validators.hr.xlf │ │ │ │ ├── validators.hu.xlf │ │ │ │ ├── validators.hy.xlf │ │ │ │ ├── validators.id.xlf │ │ │ │ ├── validators.it.xlf │ │ │ │ ├── validators.ja.xlf │ │ │ │ ├── validators.lb.xlf │ │ │ │ ├── validators.lt.xlf │ │ │ │ ├── validators.lv.xlf │ │ │ │ ├── validators.mk.xlf │ │ │ │ ├── validators.mn.xlf │ │ │ │ ├── validators.my.xlf │ │ │ │ ├── validators.nb.xlf │ │ │ │ ├── validators.nl.xlf │ │ │ │ ├── validators.nn.xlf │ │ │ │ ├── validators.no.xlf │ │ │ │ ├── validators.pl.xlf │ │ │ │ ├── validators.pt.xlf │ │ │ │ ├── validators.pt_BR.xlf │ │ │ │ ├── validators.ro.xlf │ │ │ │ ├── validators.ru.xlf │ │ │ │ ├── validators.sk.xlf │ │ │ │ ├── validators.sl.xlf │ │ │ │ ├── validators.sq.xlf │ │ │ │ ├── validators.sr_Cyrl.xlf │ │ │ │ ├── validators.sr_Latn.xlf │ │ │ │ ├── validators.sv.xlf │ │ │ │ ├── validators.th.xlf │ │ │ │ ├── validators.tl.xlf │ │ │ │ ├── validators.tr.xlf │ │ │ │ ├── validators.uk.xlf │ │ │ │ ├── validators.ur.xlf │ │ │ │ ├── validators.uz.xlf │ │ │ │ ├── validators.vi.xlf │ │ │ │ ├── validators.zh_CN.xlf │ │ │ │ └── validators.zh_TW.xlf │ │ ├── Test │ │ │ └── ConstraintValidatorTestCase.php │ │ ├── Util │ │ │ └── PropertyPath.php │ │ ├── Validation.php │ │ ├── Validator │ │ │ ├── ContextualValidatorInterface.php │ │ │ ├── LazyProperty.php │ │ │ ├── RecursiveContextualValidator.php │ │ │ ├── RecursiveValidator.php │ │ │ ├── TraceableValidator.php │ │ │ └── ValidatorInterface.php │ │ ├── ValidatorBuilder.php │ │ ├── Violation │ │ │ ├── ConstraintViolationBuilder.php │ │ │ └── ConstraintViolationBuilderInterface.php │ │ └── composer.json │ ├── var-dumper │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FFICaster.php │ │ │ ├── FiberCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RdKafkaCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── ScalarStub.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UninitializedStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Internal │ │ │ │ └── NoDefault.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ ├── Command │ │ │ ├── Descriptor │ │ │ │ ├── CliDescriptor.php │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ └── HtmlDescriptor.php │ │ │ └── ServerDumpCommand.php │ │ ├── Dumper │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── ContextProvider │ │ │ │ ├── CliContextProvider.php │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ ├── RequestContextProvider.php │ │ │ │ └── SourceContextProvider.php │ │ │ ├── ContextualizedDumper.php │ │ │ ├── DataDumperInterface.php │ │ │ ├── HtmlDumper.php │ │ │ └── ServerDumper.php │ │ ├── Exception │ │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── var-dump-server │ │ │ ├── css │ │ │ │ └── htmlDescriptor.css │ │ │ ├── functions │ │ │ │ └── dump.php │ │ │ └── js │ │ │ │ └── htmlDescriptor.js │ │ ├── Server │ │ │ ├── Connection.php │ │ │ └── DumpServer.php │ │ ├── Test │ │ │ └── VarDumperTestTrait.php │ │ ├── VarDumper.php │ │ └── composer.json │ ├── var-exporter │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── LogicException.php │ │ │ └── NotInstantiableTypeException.php │ │ ├── Hydrator.php │ │ ├── Instantiator.php │ │ ├── Internal │ │ │ ├── Exporter.php │ │ │ ├── Hydrator.php │ │ │ ├── LazyObjectRegistry.php │ │ │ ├── LazyObjectState.php │ │ │ ├── LazyObjectTrait.php │ │ │ ├── Reference.php │ │ │ ├── Registry.php │ │ │ └── Values.php │ │ ├── LICENSE │ │ ├── LazyGhostTrait.php │ │ ├── LazyObjectInterface.php │ │ ├── LazyProxyTrait.php │ │ ├── ProxyHelper.php │ │ ├── README.md │ │ ├── VarExporter.php │ │ └── composer.json │ ├── web-link │ │ ├── CHANGELOG.md │ │ ├── EventListener │ │ │ └── AddLinkHeaderListener.php │ │ ├── GenericLinkProvider.php │ │ ├── HttpHeaderSerializer.php │ │ ├── LICENSE │ │ ├── Link.php │ │ ├── README.md │ │ └── composer.json │ ├── web-profiler-bundle │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── ExceptionPanelController.php │ │ │ ├── ProfilerController.php │ │ │ └── RouterController.php │ │ ├── Csp │ │ │ ├── ContentSecurityPolicyHandler.php │ │ │ └── NonceGenerator.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── WebProfilerExtension.php │ │ ├── EventListener │ │ │ └── WebDebugToolbarListener.php │ │ ├── LICENSE │ │ ├── Profiler │ │ │ └── TemplateManager.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── profiler.php │ │ │ │ ├── routing │ │ │ │ │ ├── profiler.xml │ │ │ │ │ └── wdt.xml │ │ │ │ ├── schema │ │ │ │ │ └── webprofiler-1.0.xsd │ │ │ │ └── toolbar.php │ │ │ ├── fonts │ │ │ │ ├── JetBrainsMono.woff2 │ │ │ │ └── LICENSE.txt │ │ │ └── views │ │ │ │ ├── Collector │ │ │ │ ├── ajax.html.twig │ │ │ │ ├── cache.html.twig │ │ │ │ ├── command.html.twig │ │ │ │ ├── config.html.twig │ │ │ │ ├── events.html.twig │ │ │ │ ├── exception.css.twig │ │ │ │ ├── exception.html.twig │ │ │ │ ├── form.html.twig │ │ │ │ ├── http_client.html.twig │ │ │ │ ├── logger.html.twig │ │ │ │ ├── mailer.html.twig │ │ │ │ ├── memory.html.twig │ │ │ │ ├── messenger.html.twig │ │ │ │ ├── notifier.html.twig │ │ │ │ ├── request.html.twig │ │ │ │ ├── router.html.twig │ │ │ │ ├── serializer.html.twig │ │ │ │ ├── time.css.twig │ │ │ │ ├── time.html.twig │ │ │ │ ├── time.js │ │ │ │ ├── translation.html.twig │ │ │ │ ├── twig.html.twig │ │ │ │ ├── validator.html.twig │ │ │ │ └── workflow.html.twig │ │ │ │ ├── Icon │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── ajax.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── attachment.svg │ │ │ │ ├── cache.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── close.svg │ │ │ │ ├── command.svg │ │ │ │ ├── config.svg │ │ │ │ ├── download.svg │ │ │ │ ├── event.svg │ │ │ │ ├── exception.svg │ │ │ │ ├── file.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── form.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── http-client.svg │ │ │ │ ├── logger.svg │ │ │ │ ├── mailer.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── messenger.svg │ │ │ │ ├── no.svg │ │ │ │ ├── notifier.svg │ │ │ │ ├── redirect.svg │ │ │ │ ├── referrer.svg │ │ │ │ ├── request.svg │ │ │ │ ├── router.svg │ │ │ │ ├── search.svg │ │ │ │ ├── serializer.svg │ │ │ │ ├── settings-theme-dark.svg │ │ │ │ ├── settings-theme-light.svg │ │ │ │ ├── settings-theme-system.svg │ │ │ │ ├── settings-width-fitted.svg │ │ │ │ ├── settings-width-fixed.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── time.svg │ │ │ │ ├── translation.svg │ │ │ │ ├── twig.svg │ │ │ │ ├── validator.svg │ │ │ │ ├── workflow.svg │ │ │ │ └── yes.svg │ │ │ │ ├── Profiler │ │ │ │ ├── _command_summary.html.twig │ │ │ │ ├── _request_summary.html.twig │ │ │ │ ├── ajax_layout.html.twig │ │ │ │ ├── bag.html.twig │ │ │ │ ├── base.html.twig │ │ │ │ ├── base_js.html.twig │ │ │ │ ├── cancel.html.twig │ │ │ │ ├── header.html.twig │ │ │ │ ├── info.html.twig │ │ │ │ ├── layout.html.twig │ │ │ │ ├── open.css.twig │ │ │ │ ├── open.html.twig │ │ │ │ ├── profiler.css.twig │ │ │ │ ├── results.html.twig │ │ │ │ ├── search.html.twig │ │ │ │ ├── settings.html.twig │ │ │ │ ├── table.html.twig │ │ │ │ ├── toolbar.css.twig │ │ │ │ ├── toolbar.html.twig │ │ │ │ ├── toolbar_item.html.twig │ │ │ │ ├── toolbar_js.html.twig │ │ │ │ └── toolbar_redirect.html.twig │ │ │ │ └── Router │ │ │ │ └── panel.html.twig │ │ ├── Twig │ │ │ └── WebProfilerExtension.php │ │ ├── WebProfilerBundle.php │ │ └── composer.json │ └── yaml │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Resources │ │ └── bin │ │ │ └── yaml-lint │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json │ ├── theseer │ └── tokenizer │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php │ ├── twig │ ├── extra-bundle │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ └── MissingExtensionSuggestorPass.php │ │ │ ├── Configuration.php │ │ │ └── TwigExtraExtension.php │ │ ├── Extensions.php │ │ ├── LICENSE │ │ ├── LeagueCommonMarkConverterFactory.php │ │ ├── MissingExtensionSuggestor.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── cache.php │ │ │ │ ├── cssinliner.php │ │ │ │ ├── html.php │ │ │ │ ├── inky.php │ │ │ │ ├── intl.php │ │ │ │ ├── markdown.php │ │ │ │ ├── markdown_league.php │ │ │ │ ├── string.php │ │ │ │ └── suggestor.php │ │ ├── TwigExtraBundle.php │ │ └── composer.json │ └── twig │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ └── src │ │ ├── AbstractTwigCallable.php │ │ ├── Attribute │ │ ├── AsTwigFilter.php │ │ ├── AsTwigFunction.php │ │ ├── AsTwigTest.php │ │ ├── FirstClassTwigCallableReady.php │ │ └── YieldReady.php │ │ ├── Cache │ │ ├── CacheInterface.php │ │ ├── ChainCache.php │ │ ├── FilesystemCache.php │ │ ├── NullCache.php │ │ ├── ReadOnlyFilesystemCache.php │ │ └── RemovableCacheInterface.php │ │ ├── Compiler.php │ │ ├── DeprecatedCallableInfo.php │ │ ├── Environment.php │ │ ├── Error │ │ ├── Error.php │ │ ├── LoaderError.php │ │ ├── RuntimeError.php │ │ └── SyntaxError.php │ │ ├── ExpressionParser.php │ │ ├── ExpressionParser │ │ ├── AbstractExpressionParser.php │ │ ├── ExpressionParserDescriptionInterface.php │ │ ├── ExpressionParserInterface.php │ │ ├── ExpressionParserType.php │ │ ├── ExpressionParsers.php │ │ ├── Infix │ │ │ ├── ArgumentsTrait.php │ │ │ ├── ArrowExpressionParser.php │ │ │ ├── BinaryOperatorExpressionParser.php │ │ │ ├── ConditionalTernaryExpressionParser.php │ │ │ ├── DotExpressionParser.php │ │ │ ├── FilterExpressionParser.php │ │ │ ├── FunctionExpressionParser.php │ │ │ ├── IsExpressionParser.php │ │ │ ├── IsNotExpressionParser.php │ │ │ └── SquareBracketExpressionParser.php │ │ ├── InfixAssociativity.php │ │ ├── InfixExpressionParserInterface.php │ │ ├── PrecedenceChange.php │ │ ├── Prefix │ │ │ ├── GroupingExpressionParser.php │ │ │ ├── LiteralExpressionParser.php │ │ │ └── UnaryOperatorExpressionParser.php │ │ └── PrefixExpressionParserInterface.php │ │ ├── Extension │ │ ├── AbstractExtension.php │ │ ├── AttributeExtension.php │ │ ├── CoreExtension.php │ │ ├── DebugExtension.php │ │ ├── EscaperExtension.php │ │ ├── ExtensionInterface.php │ │ ├── GlobalsInterface.php │ │ ├── LastModifiedExtensionInterface.php │ │ ├── OptimizerExtension.php │ │ ├── ProfilerExtension.php │ │ ├── RuntimeExtensionInterface.php │ │ ├── SandboxExtension.php │ │ ├── StagingExtension.php │ │ ├── StringLoaderExtension.php │ │ └── YieldNotReadyExtension.php │ │ ├── ExtensionSet.php │ │ ├── FileExtensionEscapingStrategy.php │ │ ├── Lexer.php │ │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── ChainLoader.php │ │ ├── FilesystemLoader.php │ │ └── LoaderInterface.php │ │ ├── Markup.php │ │ ├── Node │ │ ├── AutoEscapeNode.php │ │ ├── BlockNode.php │ │ ├── BlockReferenceNode.php │ │ ├── BodyNode.php │ │ ├── CaptureNode.php │ │ ├── CheckSecurityCallNode.php │ │ ├── CheckSecurityNode.php │ │ ├── CheckToStringNode.php │ │ ├── DeprecatedNode.php │ │ ├── DoNode.php │ │ ├── EmbedNode.php │ │ ├── EmptyNode.php │ │ ├── Expression │ │ │ ├── AbstractExpression.php │ │ │ ├── ArrayExpression.php │ │ │ ├── ArrowFunctionExpression.php │ │ │ ├── AssignNameExpression.php │ │ │ ├── Binary │ │ │ │ ├── AbstractBinary.php │ │ │ │ ├── AddBinary.php │ │ │ │ ├── AndBinary.php │ │ │ │ ├── BinaryInterface.php │ │ │ │ ├── BitwiseAndBinary.php │ │ │ │ ├── BitwiseOrBinary.php │ │ │ │ ├── BitwiseXorBinary.php │ │ │ │ ├── ConcatBinary.php │ │ │ │ ├── DivBinary.php │ │ │ │ ├── ElvisBinary.php │ │ │ │ ├── EndsWithBinary.php │ │ │ │ ├── EqualBinary.php │ │ │ │ ├── FloorDivBinary.php │ │ │ │ ├── GreaterBinary.php │ │ │ │ ├── GreaterEqualBinary.php │ │ │ │ ├── HasEveryBinary.php │ │ │ │ ├── HasSomeBinary.php │ │ │ │ ├── InBinary.php │ │ │ │ ├── LessBinary.php │ │ │ │ ├── LessEqualBinary.php │ │ │ │ ├── MatchesBinary.php │ │ │ │ ├── ModBinary.php │ │ │ │ ├── MulBinary.php │ │ │ │ ├── NotEqualBinary.php │ │ │ │ ├── NotInBinary.php │ │ │ │ ├── NullCoalesceBinary.php │ │ │ │ ├── OrBinary.php │ │ │ │ ├── PowerBinary.php │ │ │ │ ├── RangeBinary.php │ │ │ │ ├── SpaceshipBinary.php │ │ │ │ ├── StartsWithBinary.php │ │ │ │ ├── SubBinary.php │ │ │ │ └── XorBinary.php │ │ │ ├── BlockReferenceExpression.php │ │ │ ├── CallExpression.php │ │ │ ├── ConditionalExpression.php │ │ │ ├── ConstantExpression.php │ │ │ ├── Filter │ │ │ │ ├── DefaultFilter.php │ │ │ │ └── RawFilter.php │ │ │ ├── FilterExpression.php │ │ │ ├── FunctionExpression.php │ │ │ ├── FunctionNode │ │ │ │ ├── EnumCasesFunction.php │ │ │ │ └── EnumFunction.php │ │ │ ├── GetAttrExpression.php │ │ │ ├── InlinePrint.php │ │ │ ├── ListExpression.php │ │ │ ├── MacroReferenceExpression.php │ │ │ ├── MethodCallExpression.php │ │ │ ├── NameExpression.php │ │ │ ├── NullCoalesceExpression.php │ │ │ ├── OperatorEscapeInterface.php │ │ │ ├── ParentExpression.php │ │ │ ├── ReturnArrayInterface.php │ │ │ ├── ReturnBoolInterface.php │ │ │ ├── ReturnNumberInterface.php │ │ │ ├── ReturnPrimitiveTypeInterface.php │ │ │ ├── ReturnStringInterface.php │ │ │ ├── SupportDefinedTestDeprecationTrait.php │ │ │ ├── SupportDefinedTestInterface.php │ │ │ ├── SupportDefinedTestTrait.php │ │ │ ├── TempNameExpression.php │ │ │ ├── Ternary │ │ │ │ └── ConditionalTernary.php │ │ │ ├── Test │ │ │ │ ├── ConstantTest.php │ │ │ │ ├── DefinedTest.php │ │ │ │ ├── DivisiblebyTest.php │ │ │ │ ├── EvenTest.php │ │ │ │ ├── NullTest.php │ │ │ │ ├── OddTest.php │ │ │ │ ├── SameasTest.php │ │ │ │ └── TrueTest.php │ │ │ ├── TestExpression.php │ │ │ ├── Unary │ │ │ │ ├── AbstractUnary.php │ │ │ │ ├── NegUnary.php │ │ │ │ ├── NotUnary.php │ │ │ │ ├── PosUnary.php │ │ │ │ ├── SpreadUnary.php │ │ │ │ ├── StringCastUnary.php │ │ │ │ └── UnaryInterface.php │ │ │ ├── Variable │ │ │ │ ├── AssignContextVariable.php │ │ │ │ ├── AssignTemplateVariable.php │ │ │ │ ├── ContextVariable.php │ │ │ │ ├── LocalVariable.php │ │ │ │ └── TemplateVariable.php │ │ │ └── VariadicExpression.php │ │ ├── FlushNode.php │ │ ├── ForElseNode.php │ │ ├── ForLoopNode.php │ │ ├── ForNode.php │ │ ├── IfNode.php │ │ ├── ImportNode.php │ │ ├── IncludeNode.php │ │ ├── MacroNode.php │ │ ├── ModuleNode.php │ │ ├── NameDeprecation.php │ │ ├── Node.php │ │ ├── NodeCaptureInterface.php │ │ ├── NodeOutputInterface.php │ │ ├── Nodes.php │ │ ├── PrintNode.php │ │ ├── SandboxNode.php │ │ ├── SetNode.php │ │ ├── TextNode.php │ │ ├── TypesNode.php │ │ └── WithNode.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor │ │ ├── AbstractNodeVisitor.php │ │ ├── EscaperNodeVisitor.php │ │ ├── NodeVisitorInterface.php │ │ ├── OptimizerNodeVisitor.php │ │ ├── SafeAnalysisNodeVisitor.php │ │ ├── SandboxNodeVisitor.php │ │ └── YieldNotReadyNodeVisitor.php │ │ ├── OperatorPrecedenceChange.php │ │ ├── Parser.php │ │ ├── Profiler │ │ ├── Dumper │ │ │ ├── BaseDumper.php │ │ │ ├── BlackfireDumper.php │ │ │ ├── HtmlDumper.php │ │ │ └── TextDumper.php │ │ ├── Node │ │ │ ├── EnterProfileNode.php │ │ │ └── LeaveProfileNode.php │ │ ├── NodeVisitor │ │ │ └── ProfilerNodeVisitor.php │ │ └── Profile.php │ │ ├── Resources │ │ ├── core.php │ │ ├── debug.php │ │ ├── escaper.php │ │ └── string_loader.php │ │ ├── Runtime │ │ └── EscaperRuntime.php │ │ ├── RuntimeLoader │ │ ├── ContainerRuntimeLoader.php │ │ ├── FactoryRuntimeLoader.php │ │ └── RuntimeLoaderInterface.php │ │ ├── Sandbox │ │ ├── SecurityError.php │ │ ├── SecurityNotAllowedFilterError.php │ │ ├── SecurityNotAllowedFunctionError.php │ │ ├── SecurityNotAllowedMethodError.php │ │ ├── SecurityNotAllowedPropertyError.php │ │ ├── SecurityNotAllowedTagError.php │ │ ├── SecurityPolicy.php │ │ ├── SecurityPolicyInterface.php │ │ └── SourcePolicyInterface.php │ │ ├── Source.php │ │ ├── Template.php │ │ ├── TemplateWrapper.php │ │ ├── Test │ │ ├── IntegrationTestCase.php │ │ └── NodeTestCase.php │ │ ├── Token.php │ │ ├── TokenParser │ │ ├── AbstractTokenParser.php │ │ ├── ApplyTokenParser.php │ │ ├── AutoEscapeTokenParser.php │ │ ├── BlockTokenParser.php │ │ ├── DeprecatedTokenParser.php │ │ ├── DoTokenParser.php │ │ ├── EmbedTokenParser.php │ │ ├── ExtendsTokenParser.php │ │ ├── FlushTokenParser.php │ │ ├── ForTokenParser.php │ │ ├── FromTokenParser.php │ │ ├── GuardTokenParser.php │ │ ├── IfTokenParser.php │ │ ├── ImportTokenParser.php │ │ ├── IncludeTokenParser.php │ │ ├── MacroTokenParser.php │ │ ├── SandboxTokenParser.php │ │ ├── SetTokenParser.php │ │ ├── TokenParserInterface.php │ │ ├── TypesTokenParser.php │ │ ├── UseTokenParser.php │ │ └── WithTokenParser.php │ │ ├── TokenStream.php │ │ ├── TwigCallableInterface.php │ │ ├── TwigFilter.php │ │ ├── TwigFunction.php │ │ ├── TwigTest.php │ │ └── Util │ │ ├── CallableArgumentsExtractor.php │ │ ├── DeprecationCollector.php │ │ ├── ReflectionCallable.php │ │ └── TemplateDirIterator.php │ └── webmozart │ └── assert │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Assert.php │ ├── InvalidArgumentException.php │ └── Mixin.php └── README.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/3A45.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/3A45.iml -------------------------------------------------------------------------------- /.idea/Symfony.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/Symfony.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/phpunit.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.env -------------------------------------------------------------------------------- /21-22/2cinfo4/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.env.test -------------------------------------------------------------------------------- /21-22/2cinfo4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.gitignore -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/2cinfo4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/2cinfo4.iml -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/php.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/.idea/workspace.xml -------------------------------------------------------------------------------- /21-22/2cinfo4/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/bin/console -------------------------------------------------------------------------------- /21-22/2cinfo4/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/bin/phpunit -------------------------------------------------------------------------------- /21-22/2cinfo4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/composer.json -------------------------------------------------------------------------------- /21-22/2cinfo4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/composer.lock -------------------------------------------------------------------------------- /21-22/2cinfo4/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/2cinfo4/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/config/bundles.php -------------------------------------------------------------------------------- /21-22/2cinfo4/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/2cinfo4/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/config/preload.php -------------------------------------------------------------------------------- /21-22/2cinfo4/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/config/routes.yaml -------------------------------------------------------------------------------- /21-22/2cinfo4/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/config/services.yaml -------------------------------------------------------------------------------- /21-22/2cinfo4/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/docker-compose.yml -------------------------------------------------------------------------------- /21-22/2cinfo4/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/2cinfo4/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/2cinfo4/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/public/index.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/src/Entity/Club.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Entity/Voiture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/src/Entity/Voiture.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/src/Form/ClubType.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/src/Kernel.php -------------------------------------------------------------------------------- /21-22/2cinfo4/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/2cinfo4/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/symfony.lock -------------------------------------------------------------------------------- /21-22/2cinfo4/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/2cinfo4/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/2cinfo4/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A12/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.env -------------------------------------------------------------------------------- /21-22/3A12/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.env.test -------------------------------------------------------------------------------- /21-22/3A12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.gitignore -------------------------------------------------------------------------------- /21-22/3A12/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/3A12/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /21-22/3A12/.idea/3A12.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/3A12.iml -------------------------------------------------------------------------------- /21-22/3A12/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/3A12/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/3A12/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/php.xml -------------------------------------------------------------------------------- /21-22/3A12/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/3A12/README.md: -------------------------------------------------------------------------------- 1 | # FirstProject -------------------------------------------------------------------------------- /21-22/3A12/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/bin/console -------------------------------------------------------------------------------- /21-22/3A12/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/bin/phpunit -------------------------------------------------------------------------------- /21-22/3A12/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/composer.json -------------------------------------------------------------------------------- /21-22/3A12/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/composer.lock -------------------------------------------------------------------------------- /21-22/3A12/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A12/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/bundles.php -------------------------------------------------------------------------------- /21-22/3A12/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/3A12/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/3A12/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/preload.php -------------------------------------------------------------------------------- /21-22/3A12/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/routes.yaml -------------------------------------------------------------------------------- /21-22/3A12/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/config/services.yaml -------------------------------------------------------------------------------- /21-22/3A12/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A12/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/3A12/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/public/index.php -------------------------------------------------------------------------------- /21-22/3A12/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A12/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/3A12/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/3A12/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/3A12/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/src/Kernel.php -------------------------------------------------------------------------------- /21-22/3A12/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/symfony.lock -------------------------------------------------------------------------------- /21-22/3A12/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/3A12/templates/student/add.html.twig: -------------------------------------------------------------------------------- 1 |

Add New Student

2 | 3 | -------------------------------------------------------------------------------- /21-22/3A12/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A12/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A12/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A24/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.env -------------------------------------------------------------------------------- /21-22/3A24/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.env.test -------------------------------------------------------------------------------- /21-22/3A24/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.gitignore -------------------------------------------------------------------------------- /21-22/3A24/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/3A24/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /21-22/3A24/.idea/3A24.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/3A24.iml -------------------------------------------------------------------------------- /21-22/3A24/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/3A24/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/3A24/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/php.xml -------------------------------------------------------------------------------- /21-22/3A24/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/3A24/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/bin/console -------------------------------------------------------------------------------- /21-22/3A24/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/bin/phpunit -------------------------------------------------------------------------------- /21-22/3A24/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/composer.json -------------------------------------------------------------------------------- /21-22/3A24/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/composer.lock -------------------------------------------------------------------------------- /21-22/3A24/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A24/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/bundles.php -------------------------------------------------------------------------------- /21-22/3A24/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/3A24/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/3A24/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/preload.php -------------------------------------------------------------------------------- /21-22/3A24/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/routes.yaml -------------------------------------------------------------------------------- /21-22/3A24/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/config/services.yaml -------------------------------------------------------------------------------- /21-22/3A24/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/docker-compose.yml -------------------------------------------------------------------------------- /21-22/3A24/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A24/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/3A24/public/images/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/public/images/github.jpg -------------------------------------------------------------------------------- /21-22/3A24/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/public/index.php -------------------------------------------------------------------------------- /21-22/3A24/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A24/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A24/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/3A24/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/3A24/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/3A24/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/src/Kernel.php -------------------------------------------------------------------------------- /21-22/3A24/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A24/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/symfony.lock -------------------------------------------------------------------------------- /21-22/3A24/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/3A24/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A24/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A24/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A25/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.env -------------------------------------------------------------------------------- /21-22/3A25/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.env.test -------------------------------------------------------------------------------- /21-22/3A25/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.gitignore -------------------------------------------------------------------------------- /21-22/3A25/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/3A25/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /21-22/3A25/.idea/3A25.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/3A25.iml -------------------------------------------------------------------------------- /21-22/3A25/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/3A25/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/3A25/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/php.xml -------------------------------------------------------------------------------- /21-22/3A25/.idea/symfony2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/symfony2.xml -------------------------------------------------------------------------------- /21-22/3A25/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/3A25/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/bin/console -------------------------------------------------------------------------------- /21-22/3A25/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/bin/phpunit -------------------------------------------------------------------------------- /21-22/3A25/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/composer.json -------------------------------------------------------------------------------- /21-22/3A25/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/composer.lock -------------------------------------------------------------------------------- /21-22/3A25/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A25/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/bundles.php -------------------------------------------------------------------------------- /21-22/3A25/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/3A25/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/3A25/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/preload.php -------------------------------------------------------------------------------- /21-22/3A25/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/routes.yaml -------------------------------------------------------------------------------- /21-22/3A25/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/config/services.yaml -------------------------------------------------------------------------------- /21-22/3A25/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/docker-compose.yml -------------------------------------------------------------------------------- /21-22/3A25/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A25/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/3A25/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/public/css/style.css -------------------------------------------------------------------------------- /21-22/3A25/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/public/index.php -------------------------------------------------------------------------------- /21-22/3A25/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A25/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A25/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/3A25/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/3A25/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/3A25/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/src/Kernel.php -------------------------------------------------------------------------------- /21-22/3A25/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A25/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/symfony.lock -------------------------------------------------------------------------------- /21-22/3A25/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/3A25/templates/project/show.html.twig: -------------------------------------------------------------------------------- 1 |

Formation N:

2 | -------------------------------------------------------------------------------- /21-22/3A25/templates/user/show.html.twig: -------------------------------------------------------------------------------- 1 |

3A25

2 | -------------------------------------------------------------------------------- /21-22/3A25/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A25/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A25/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A44/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.env -------------------------------------------------------------------------------- /21-22/3A44/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.env.test -------------------------------------------------------------------------------- /21-22/3A44/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.gitignore -------------------------------------------------------------------------------- /21-22/3A44/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/3A44/.idea/3A44.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/3A44.iml -------------------------------------------------------------------------------- /21-22/3A44/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/3A44/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/3A44/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/php.xml -------------------------------------------------------------------------------- /21-22/3A44/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/3A44/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/.idea/workspace.xml -------------------------------------------------------------------------------- /21-22/3A44/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/bin/console -------------------------------------------------------------------------------- /21-22/3A44/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/bin/phpunit -------------------------------------------------------------------------------- /21-22/3A44/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/composer.json -------------------------------------------------------------------------------- /21-22/3A44/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/composer.lock -------------------------------------------------------------------------------- /21-22/3A44/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A44/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/bundles.php -------------------------------------------------------------------------------- /21-22/3A44/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/3A44/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/3A44/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/preload.php -------------------------------------------------------------------------------- /21-22/3A44/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/routes.yaml -------------------------------------------------------------------------------- /21-22/3A44/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/config/services.yaml -------------------------------------------------------------------------------- /21-22/3A44/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A44/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/3A44/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/public/index.php -------------------------------------------------------------------------------- /21-22/3A44/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A44/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A44/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/3A44/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/3A44/src/Form/MaxMinType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/src/Form/MaxMinType.php -------------------------------------------------------------------------------- /21-22/3A44/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/3A44/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/src/Kernel.php -------------------------------------------------------------------------------- /21-22/3A44/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A44/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/symfony.lock -------------------------------------------------------------------------------- /21-22/3A44/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/3A44/templates/formation/detail.html.twig: -------------------------------------------------------------------------------- 1 | detail de la formation : x 2 | -------------------------------------------------------------------------------- /21-22/3A44/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A44/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A44/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A46/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.env -------------------------------------------------------------------------------- /21-22/3A46/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.env.test -------------------------------------------------------------------------------- /21-22/3A46/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.gitignore -------------------------------------------------------------------------------- /21-22/3A46/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/3A46/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /21-22/3A46/.idea/3A44.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/3A44.iml -------------------------------------------------------------------------------- /21-22/3A46/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/3A46/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/3A46/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/php.xml -------------------------------------------------------------------------------- /21-22/3A46/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/3A46/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/bin/console -------------------------------------------------------------------------------- /21-22/3A46/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/bin/phpunit -------------------------------------------------------------------------------- /21-22/3A46/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/composer.json -------------------------------------------------------------------------------- /21-22/3A46/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/composer.lock -------------------------------------------------------------------------------- /21-22/3A46/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A46/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/bundles.php -------------------------------------------------------------------------------- /21-22/3A46/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/3A46/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/3A46/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/preload.php -------------------------------------------------------------------------------- /21-22/3A46/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/routes.yaml -------------------------------------------------------------------------------- /21-22/3A46/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/config/services.yaml -------------------------------------------------------------------------------- /21-22/3A46/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A46/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/3A46/public/images/tunisie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/public/images/tunisie.png -------------------------------------------------------------------------------- /21-22/3A46/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/public/index.php -------------------------------------------------------------------------------- /21-22/3A46/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A46/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A46/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/3A46/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/3A46/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/3A46/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/src/Kernel.php -------------------------------------------------------------------------------- /21-22/3A46/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/3A46/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/symfony.lock -------------------------------------------------------------------------------- /21-22/3A46/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/3A46/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/3A46/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/3A46/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/4SE4/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.env -------------------------------------------------------------------------------- /21-22/4SE4/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.env.test -------------------------------------------------------------------------------- /21-22/4SE4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.gitignore -------------------------------------------------------------------------------- /21-22/4SE4/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/4SE4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /21-22/4SE4/.idea/4SE4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/4SE4.iml -------------------------------------------------------------------------------- /21-22/4SE4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/4SE4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/4SE4/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/php.xml -------------------------------------------------------------------------------- /21-22/4SE4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/4SE4/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/bin/console -------------------------------------------------------------------------------- /21-22/4SE4/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/bin/phpunit -------------------------------------------------------------------------------- /21-22/4SE4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/composer.json -------------------------------------------------------------------------------- /21-22/4SE4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/composer.lock -------------------------------------------------------------------------------- /21-22/4SE4/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/4SE4/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/bundles.php -------------------------------------------------------------------------------- /21-22/4SE4/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/4SE4/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/4SE4/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/preload.php -------------------------------------------------------------------------------- /21-22/4SE4/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/routes.yaml -------------------------------------------------------------------------------- /21-22/4SE4/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/config/services.yaml -------------------------------------------------------------------------------- /21-22/4SE4/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/4SE4/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/4SE4/public/Front/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/public/Front/js/main.js -------------------------------------------------------------------------------- /21-22/4SE4/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/public/index.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/4SE4/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/4SE4/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Entity/Club.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Form/ClubType.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/src/Kernel.php -------------------------------------------------------------------------------- /21-22/4SE4/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/4SE4/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/symfony.lock -------------------------------------------------------------------------------- /21-22/4SE4/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/4SE4/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/4SE4/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/4SE4/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/5SE3/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.env -------------------------------------------------------------------------------- /21-22/5SE3/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.env.test -------------------------------------------------------------------------------- /21-22/5SE3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.gitignore -------------------------------------------------------------------------------- /21-22/5SE3/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /21-22/5SE3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /21-22/5SE3/.idea/5SE3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/5SE3.iml -------------------------------------------------------------------------------- /21-22/5SE3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/misc.xml -------------------------------------------------------------------------------- /21-22/5SE3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/modules.xml -------------------------------------------------------------------------------- /21-22/5SE3/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/php.xml -------------------------------------------------------------------------------- /21-22/5SE3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/.idea/vcs.xml -------------------------------------------------------------------------------- /21-22/5SE3/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/bin/console -------------------------------------------------------------------------------- /21-22/5SE3/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/bin/phpunit -------------------------------------------------------------------------------- /21-22/5SE3/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/composer.json -------------------------------------------------------------------------------- /21-22/5SE3/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/composer.lock -------------------------------------------------------------------------------- /21-22/5SE3/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/bootstrap.php -------------------------------------------------------------------------------- /21-22/5SE3/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/bundles.php -------------------------------------------------------------------------------- /21-22/5SE3/config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /21-22/5SE3/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/packages/twig.yaml -------------------------------------------------------------------------------- /21-22/5SE3/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/preload.php -------------------------------------------------------------------------------- /21-22/5SE3/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/routes.yaml -------------------------------------------------------------------------------- /21-22/5SE3/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/config/services.yaml -------------------------------------------------------------------------------- /21-22/5SE3/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/5SE3/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/phpunit.xml.dist -------------------------------------------------------------------------------- /21-22/5SE3/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/public/index.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/5SE3/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/5SE3/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Entity/Classroom.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Entity/Club.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Entity/Student.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Form/ClubType.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Form/StudentType.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/src/Kernel.php -------------------------------------------------------------------------------- /21-22/5SE3/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-22/5SE3/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/symfony.lock -------------------------------------------------------------------------------- /21-22/5SE3/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/templates/base.html.twig -------------------------------------------------------------------------------- /21-22/5SE3/templates/product/show.html.twig: -------------------------------------------------------------------------------- 1 |

show product

2 | -------------------------------------------------------------------------------- /21-22/5SE3/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/21-22/5SE3/tests/bootstrap.php -------------------------------------------------------------------------------- /21-22/5SE3/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /22-23/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /22-23/.idea/22-23.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/22-23.iml -------------------------------------------------------------------------------- /22-23/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/misc.xml -------------------------------------------------------------------------------- /22-23/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/php.xml -------------------------------------------------------------------------------- /22-23/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/1CINFO3/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/1CINFO3/about.html -------------------------------------------------------------------------------- /22-23/1CINFO3/images/google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/1CINFO3/images/google.jpg -------------------------------------------------------------------------------- /22-23/1CINFO3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/1CINFO3/index.html -------------------------------------------------------------------------------- /22-23/1CINFO3/my_project_directory/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/1CINFO3/my_project_directory/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/1CINFO3/my_project_directory/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/1CINFO3/my_project_directory/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/1CINFO3/my_project_directory/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/1CINFO3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/1CINFO3/style.css -------------------------------------------------------------------------------- /22-23/1CINFO3/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/1CINFO3/test.php -------------------------------------------------------------------------------- /22-23/2cinfo1/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.env -------------------------------------------------------------------------------- /22-23/2cinfo1/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.env.test -------------------------------------------------------------------------------- /22-23/2cinfo1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.gitignore -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/2cinfo1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/2cinfo1.iml -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/misc.xml -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/php.xml -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/2cinfo1/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/.idea/workspace.xml -------------------------------------------------------------------------------- /22-23/2cinfo1/README.md: -------------------------------------------------------------------------------- 1 | # Symfony5 -------------------------------------------------------------------------------- /22-23/2cinfo1/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/bin/console -------------------------------------------------------------------------------- /22-23/2cinfo1/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/bin/phpunit -------------------------------------------------------------------------------- /22-23/2cinfo1/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/composer.json -------------------------------------------------------------------------------- /22-23/2cinfo1/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/composer.lock -------------------------------------------------------------------------------- /22-23/2cinfo1/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/config/bundles.php -------------------------------------------------------------------------------- /22-23/2cinfo1/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/config/preload.php -------------------------------------------------------------------------------- /22-23/2cinfo1/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/config/routes.yaml -------------------------------------------------------------------------------- /22-23/2cinfo1/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/config/services.yaml -------------------------------------------------------------------------------- /22-23/2cinfo1/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/2cinfo1/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/2cinfo1/public/img/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/public/img/cat.png -------------------------------------------------------------------------------- /22-23/2cinfo1/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/public/index.php -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/src/Entity/Product.php -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/src/Kernel.php -------------------------------------------------------------------------------- /22-23/2cinfo1/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/2cinfo1/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/symfony.lock -------------------------------------------------------------------------------- /22-23/2cinfo1/templates/home/service.html.twig: -------------------------------------------------------------------------------- 1 |

Service 2cinfo1

2 | -------------------------------------------------------------------------------- /22-23/2cinfo1/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/2cinfo1/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/2cinfo1/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.env -------------------------------------------------------------------------------- /22-23/3A29/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.env.test -------------------------------------------------------------------------------- /22-23/3A29/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.gitignore -------------------------------------------------------------------------------- /22-23/3A29/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /22-23/3A29/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /22-23/3A29/.idea/3A29.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/3A29.iml -------------------------------------------------------------------------------- /22-23/3A29/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/misc.xml -------------------------------------------------------------------------------- /22-23/3A29/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/3A29/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/php.xml -------------------------------------------------------------------------------- /22-23/3A29/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/3A29/README.md: -------------------------------------------------------------------------------- 1 | # Symfony5 -------------------------------------------------------------------------------- /22-23/3A29/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/bin/console -------------------------------------------------------------------------------- /22-23/3A29/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/bin/phpunit -------------------------------------------------------------------------------- /22-23/3A29/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/composer.json -------------------------------------------------------------------------------- /22-23/3A29/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/composer.lock -------------------------------------------------------------------------------- /22-23/3A29/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/config/bundles.php -------------------------------------------------------------------------------- /22-23/3A29/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/config/packages/twig.yaml -------------------------------------------------------------------------------- /22-23/3A29/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/config/preload.php -------------------------------------------------------------------------------- /22-23/3A29/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/config/routes.yaml -------------------------------------------------------------------------------- /22-23/3A29/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/config/services.yaml -------------------------------------------------------------------------------- /22-23/3A29/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/3A29/public/Front/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/public/Front/js/main.js -------------------------------------------------------------------------------- /22-23/3A29/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/public/index.php -------------------------------------------------------------------------------- /22-23/3A29/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Entity/Classroom.php -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Entity/Contact.php -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Entity/Product.php -------------------------------------------------------------------------------- /22-23/3A29/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/3A29/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Form/ClubType.php -------------------------------------------------------------------------------- /22-23/3A29/src/Form/ContactType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Form/ContactType.php -------------------------------------------------------------------------------- /22-23/3A29/src/Form/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Form/ProductType.php -------------------------------------------------------------------------------- /22-23/3A29/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Form/StudentType.php -------------------------------------------------------------------------------- /22-23/3A29/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/src/Kernel.php -------------------------------------------------------------------------------- /22-23/3A29/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/symfony.lock -------------------------------------------------------------------------------- /22-23/3A29/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/templates/base.html.twig -------------------------------------------------------------------------------- /22-23/3A29/templates/product/show.html.twig: -------------------------------------------------------------------------------- 1 |

Show Product Nb 1

2 | -------------------------------------------------------------------------------- /22-23/3A29/templates/student/base.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A29/tests/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/tests/ProductTest.php -------------------------------------------------------------------------------- /22-23/3A29/tests/StudentUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/tests/StudentUnitTest.php -------------------------------------------------------------------------------- /22-23/3A29/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A29/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/3A29/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A30/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.env -------------------------------------------------------------------------------- /22-23/3A30/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.env.test -------------------------------------------------------------------------------- /22-23/3A30/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.gitignore -------------------------------------------------------------------------------- /22-23/3A30/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/.gitignore -------------------------------------------------------------------------------- /22-23/3A30/.idea/3A30.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/3A30.iml -------------------------------------------------------------------------------- /22-23/3A30/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/3A30/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/php.xml -------------------------------------------------------------------------------- /22-23/3A30/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/phpunit.xml -------------------------------------------------------------------------------- /22-23/3A30/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/3A30/README.md: -------------------------------------------------------------------------------- 1 | # Symfony5 -------------------------------------------------------------------------------- /22-23/3A30/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/bin/console -------------------------------------------------------------------------------- /22-23/3A30/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/bin/phpunit -------------------------------------------------------------------------------- /22-23/3A30/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/composer.json -------------------------------------------------------------------------------- /22-23/3A30/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/composer.lock -------------------------------------------------------------------------------- /22-23/3A30/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/config/bundles.php -------------------------------------------------------------------------------- /22-23/3A30/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/config/packages/twig.yaml -------------------------------------------------------------------------------- /22-23/3A30/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/config/preload.php -------------------------------------------------------------------------------- /22-23/3A30/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/config/routes.yaml -------------------------------------------------------------------------------- /22-23/3A30/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/config/services.yaml -------------------------------------------------------------------------------- /22-23/3A30/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A30/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/3A30/public/img/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/public/img/octocat.png -------------------------------------------------------------------------------- /22-23/3A30/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/public/index.php -------------------------------------------------------------------------------- /22-23/3A30/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Entity/Category.php -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Entity/Classroom.php -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Entity/Product.php -------------------------------------------------------------------------------- /22-23/3A30/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/3A30/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Form/StudentType.php -------------------------------------------------------------------------------- /22-23/3A30/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/src/Kernel.php -------------------------------------------------------------------------------- /22-23/3A30/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A30/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/symfony.lock -------------------------------------------------------------------------------- /22-23/3A30/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/templates/base.html.twig -------------------------------------------------------------------------------- /22-23/3A30/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A30/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/3A30/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A31/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.env -------------------------------------------------------------------------------- /22-23/3A31/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.env.test -------------------------------------------------------------------------------- /22-23/3A31/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.gitignore -------------------------------------------------------------------------------- /22-23/3A31/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /22-23/3A31/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /22-23/3A31/.idea/3A31.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/3A31.iml -------------------------------------------------------------------------------- /22-23/3A31/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/misc.xml -------------------------------------------------------------------------------- /22-23/3A31/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/3A31/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/php.xml -------------------------------------------------------------------------------- /22-23/3A31/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/3A31/README.md: -------------------------------------------------------------------------------- 1 | # Symfony5 -------------------------------------------------------------------------------- /22-23/3A31/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/bin/console -------------------------------------------------------------------------------- /22-23/3A31/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/bin/phpunit -------------------------------------------------------------------------------- /22-23/3A31/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/composer.json -------------------------------------------------------------------------------- /22-23/3A31/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/composer.lock -------------------------------------------------------------------------------- /22-23/3A31/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/config/bundles.php -------------------------------------------------------------------------------- /22-23/3A31/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/config/packages/twig.yaml -------------------------------------------------------------------------------- /22-23/3A31/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/config/preload.php -------------------------------------------------------------------------------- /22-23/3A31/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/config/routes.yaml -------------------------------------------------------------------------------- /22-23/3A31/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/config/services.yaml -------------------------------------------------------------------------------- /22-23/3A31/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A31/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/3A31/public/img/octocat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/public/img/octocat.gif -------------------------------------------------------------------------------- /22-23/3A31/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/public/index.php -------------------------------------------------------------------------------- /22-23/3A31/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A31/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A31/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Entity/Classroom.php -------------------------------------------------------------------------------- /22-23/3A31/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/3A31/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/3A31/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Form/ClubType.php -------------------------------------------------------------------------------- /22-23/3A31/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Form/StudentType.php -------------------------------------------------------------------------------- /22-23/3A31/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/src/Kernel.php -------------------------------------------------------------------------------- /22-23/3A31/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A31/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/symfony.lock -------------------------------------------------------------------------------- /22-23/3A31/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/templates/base.html.twig -------------------------------------------------------------------------------- /22-23/3A31/templates/club/detail.html.twig: -------------------------------------------------------------------------------- 1 |
Réservation
2 | -------------------------------------------------------------------------------- /22-23/3A31/templates/pizza/list.html.twig: -------------------------------------------------------------------------------- 1 |

Liste des produits

2 | -------------------------------------------------------------------------------- /22-23/3A31/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A31/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/3A31/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A32/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.env -------------------------------------------------------------------------------- /22-23/3A32/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.env.test -------------------------------------------------------------------------------- /22-23/3A32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.gitignore -------------------------------------------------------------------------------- /22-23/3A32/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /22-23/3A32/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /22-23/3A32/.idea/3A29.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/3A29.iml -------------------------------------------------------------------------------- /22-23/3A32/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/misc.xml -------------------------------------------------------------------------------- /22-23/3A32/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/3A32/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/php.xml -------------------------------------------------------------------------------- /22-23/3A32/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/3A32/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/bin/console -------------------------------------------------------------------------------- /22-23/3A32/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/bin/phpunit -------------------------------------------------------------------------------- /22-23/3A32/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/composer.json -------------------------------------------------------------------------------- /22-23/3A32/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/composer.lock -------------------------------------------------------------------------------- /22-23/3A32/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/config/bundles.php -------------------------------------------------------------------------------- /22-23/3A32/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/config/packages/twig.yaml -------------------------------------------------------------------------------- /22-23/3A32/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/config/preload.php -------------------------------------------------------------------------------- /22-23/3A32/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/config/routes.yaml -------------------------------------------------------------------------------- /22-23/3A32/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/config/services.yaml -------------------------------------------------------------------------------- /22-23/3A32/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A32/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/3A32/public/img/student.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/public/img/student.jpg -------------------------------------------------------------------------------- /22-23/3A32/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/public/index.php -------------------------------------------------------------------------------- /22-23/3A32/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Entity/Category.php -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Entity/Classroom.php -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Entity/Product.php -------------------------------------------------------------------------------- /22-23/3A32/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/3A32/src/Form/ClubType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Form/ClubType.php -------------------------------------------------------------------------------- /22-23/3A32/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Form/StudentType.php -------------------------------------------------------------------------------- /22-23/3A32/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/src/Kernel.php -------------------------------------------------------------------------------- /22-23/3A32/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/3A32/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/symfony.lock -------------------------------------------------------------------------------- /22-23/3A32/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/templates/base.html.twig -------------------------------------------------------------------------------- /22-23/3A32/templates/product/index.html.twig: -------------------------------------------------------------------------------- 1 | list product -------------------------------------------------------------------------------- /22-23/3A32/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/3A32/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/3A32/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/4SE4/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.env -------------------------------------------------------------------------------- /22-23/4SE4/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.env.test -------------------------------------------------------------------------------- /22-23/4SE4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.gitignore -------------------------------------------------------------------------------- /22-23/4SE4/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/.gitignore -------------------------------------------------------------------------------- /22-23/4SE4/.idea/4SE4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/4SE4.iml -------------------------------------------------------------------------------- /22-23/4SE4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/modules.xml -------------------------------------------------------------------------------- /22-23/4SE4/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/php.xml -------------------------------------------------------------------------------- /22-23/4SE4/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/phpunit.xml -------------------------------------------------------------------------------- /22-23/4SE4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/4SE4/README.md: -------------------------------------------------------------------------------- 1 | # Symfony5 -------------------------------------------------------------------------------- /22-23/4SE4/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/bin/console -------------------------------------------------------------------------------- /22-23/4SE4/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/bin/phpunit -------------------------------------------------------------------------------- /22-23/4SE4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/composer.json -------------------------------------------------------------------------------- /22-23/4SE4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/composer.lock -------------------------------------------------------------------------------- /22-23/4SE4/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/config/bundles.php -------------------------------------------------------------------------------- /22-23/4SE4/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/config/packages/twig.yaml -------------------------------------------------------------------------------- /22-23/4SE4/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/config/preload.php -------------------------------------------------------------------------------- /22-23/4SE4/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/config/routes.yaml -------------------------------------------------------------------------------- /22-23/4SE4/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/config/services.yaml -------------------------------------------------------------------------------- /22-23/4SE4/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/4SE4/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/phpunit.xml.dist -------------------------------------------------------------------------------- /22-23/4SE4/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/public/index.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/4SE4/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/4SE4/src/Entity/Classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/src/Entity/Classroom.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Entity/Club.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/src/Entity/Club.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Entity/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/src/Entity/Student.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Form/StudentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/src/Form/StudentType.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/src/Kernel.php -------------------------------------------------------------------------------- /22-23/4SE4/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/4SE4/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/symfony.lock -------------------------------------------------------------------------------- /22-23/4SE4/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/templates/base.html.twig -------------------------------------------------------------------------------- /22-23/4SE4/templates/car/show.html.twig: -------------------------------------------------------------------------------- 1 |

CAR Nb1

2 | -------------------------------------------------------------------------------- /22-23/4SE4/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/4SE4/tests/bootstrap.php -------------------------------------------------------------------------------- /22-23/4SE4/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/examen_correction/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/.env -------------------------------------------------------------------------------- /22-23/examen_correction/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/.env.test -------------------------------------------------------------------------------- /22-23/examen_correction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/.gitignore -------------------------------------------------------------------------------- /22-23/examen_correction/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/bin/console -------------------------------------------------------------------------------- /22-23/examen_correction/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/bin/phpunit -------------------------------------------------------------------------------- /22-23/examen_correction/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/examen_correction/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/examen_correction/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/examen_correction/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/examen_correction/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/examen_correction/symfony.lock -------------------------------------------------------------------------------- /22-23/examen_correction/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/summerintership/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/.env -------------------------------------------------------------------------------- /22-23/summerintership/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/.env.test -------------------------------------------------------------------------------- /22-23/summerintership/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/.gitignore -------------------------------------------------------------------------------- /22-23/summerintership/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/.idea/php.xml -------------------------------------------------------------------------------- /22-23/summerintership/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/.idea/vcs.xml -------------------------------------------------------------------------------- /22-23/summerintership/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/bin/console -------------------------------------------------------------------------------- /22-23/summerintership/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/bin/phpunit -------------------------------------------------------------------------------- /22-23/summerintership/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/composer.json -------------------------------------------------------------------------------- /22-23/summerintership/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/composer.lock -------------------------------------------------------------------------------- /22-23/summerintership/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22-23/summerintership/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/src/Kernel.php -------------------------------------------------------------------------------- /22-23/summerintership/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/22-23/summerintership/symfony.lock -------------------------------------------------------------------------------- /22-23/summerintership/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A42/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.env -------------------------------------------------------------------------------- /23-24/3A42/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.env.test -------------------------------------------------------------------------------- /23-24/3A42/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.gitignore -------------------------------------------------------------------------------- /23-24/3A42/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /23-24/3A42/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /23-24/3A42/.idea/3A42.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/3A42.iml -------------------------------------------------------------------------------- /23-24/3A42/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/misc.xml -------------------------------------------------------------------------------- /23-24/3A42/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/modules.xml -------------------------------------------------------------------------------- /23-24/3A42/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/php.xml -------------------------------------------------------------------------------- /23-24/3A42/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/phpunit.xml -------------------------------------------------------------------------------- /23-24/3A42/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/.idea/vcs.xml -------------------------------------------------------------------------------- /23-24/3A42/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/bin/console -------------------------------------------------------------------------------- /23-24/3A42/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/bin/phpunit -------------------------------------------------------------------------------- /23-24/3A42/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/composer.json -------------------------------------------------------------------------------- /23-24/3A42/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/composer.lock -------------------------------------------------------------------------------- /23-24/3A42/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/config/bundles.php -------------------------------------------------------------------------------- /23-24/3A42/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/config/packages/twig.yaml -------------------------------------------------------------------------------- /23-24/3A42/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/config/preload.php -------------------------------------------------------------------------------- /23-24/3A42/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/config/routes.yaml -------------------------------------------------------------------------------- /23-24/3A42/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/config/services.yaml -------------------------------------------------------------------------------- /23-24/3A42/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A42/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/phpunit.xml.dist -------------------------------------------------------------------------------- /23-24/3A42/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/public/index.php -------------------------------------------------------------------------------- /23-24/3A42/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A42/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A42/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Entity/Author.php -------------------------------------------------------------------------------- /23-24/3A42/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Entity/Book.php -------------------------------------------------------------------------------- /23-24/3A42/src/Entity/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Entity/Project.php -------------------------------------------------------------------------------- /23-24/3A42/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Form/AuthorType.php -------------------------------------------------------------------------------- /23-24/3A42/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Form/BookType.php -------------------------------------------------------------------------------- /23-24/3A42/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/src/Kernel.php -------------------------------------------------------------------------------- /23-24/3A42/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A42/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/symfony.lock -------------------------------------------------------------------------------- /23-24/3A42/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/templates/base.html.twig -------------------------------------------------------------------------------- /23-24/3A42/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A42/tests/bootstrap.php -------------------------------------------------------------------------------- /23-24/3A42/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A43/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.env -------------------------------------------------------------------------------- /23-24/3A43/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.env.test -------------------------------------------------------------------------------- /23-24/3A43/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.gitignore -------------------------------------------------------------------------------- /23-24/3A43/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /23-24/3A43/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /23-24/3A43/.idea/3A43.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/3A43.iml -------------------------------------------------------------------------------- /23-24/3A43/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/misc.xml -------------------------------------------------------------------------------- /23-24/3A43/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/modules.xml -------------------------------------------------------------------------------- /23-24/3A43/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/php.xml -------------------------------------------------------------------------------- /23-24/3A43/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/phpunit.xml -------------------------------------------------------------------------------- /23-24/3A43/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/.idea/vcs.xml -------------------------------------------------------------------------------- /23-24/3A43/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/bin/console -------------------------------------------------------------------------------- /23-24/3A43/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/bin/phpunit -------------------------------------------------------------------------------- /23-24/3A43/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/composer.json -------------------------------------------------------------------------------- /23-24/3A43/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/composer.lock -------------------------------------------------------------------------------- /23-24/3A43/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/config/bundles.php -------------------------------------------------------------------------------- /23-24/3A43/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/config/packages/twig.yaml -------------------------------------------------------------------------------- /23-24/3A43/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/config/preload.php -------------------------------------------------------------------------------- /23-24/3A43/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/config/routes.yaml -------------------------------------------------------------------------------- /23-24/3A43/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/config/services.yaml -------------------------------------------------------------------------------- /23-24/3A43/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A43/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/phpunit.xml.dist -------------------------------------------------------------------------------- /23-24/3A43/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/public/index.php -------------------------------------------------------------------------------- /23-24/3A43/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A43/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A43/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Entity/Author.php -------------------------------------------------------------------------------- /23-24/3A43/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Entity/Book.php -------------------------------------------------------------------------------- /23-24/3A43/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Entity/Product.php -------------------------------------------------------------------------------- /23-24/3A43/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Form/AuthorType.php -------------------------------------------------------------------------------- /23-24/3A43/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Form/BookType.php -------------------------------------------------------------------------------- /23-24/3A43/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/src/Kernel.php -------------------------------------------------------------------------------- /23-24/3A43/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A43/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/symfony.lock -------------------------------------------------------------------------------- /23-24/3A43/templates/author/show.html.twig: -------------------------------------------------------------------------------- 1 |

Hello{{ nameAuthor }}

2 | 3 | -------------------------------------------------------------------------------- /23-24/3A43/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/templates/base.html.twig -------------------------------------------------------------------------------- /23-24/3A43/templates/product/products.html.twig: -------------------------------------------------------------------------------- 1 |

List Products

2 | -------------------------------------------------------------------------------- /23-24/3A43/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A43/tests/bootstrap.php -------------------------------------------------------------------------------- /23-24/3A43/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A44/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.env -------------------------------------------------------------------------------- /23-24/3A44/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.env.test -------------------------------------------------------------------------------- /23-24/3A44/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.gitignore -------------------------------------------------------------------------------- /23-24/3A44/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /23-24/3A44/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/3A44.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/3A44.iml -------------------------------------------------------------------------------- /23-24/3A44/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/misc.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/modules.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/php.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/phpunit.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/symfony2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/symfony2.xml -------------------------------------------------------------------------------- /23-24/3A44/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/.idea/vcs.xml -------------------------------------------------------------------------------- /23-24/3A44/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/bin/console -------------------------------------------------------------------------------- /23-24/3A44/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/bin/phpunit -------------------------------------------------------------------------------- /23-24/3A44/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/composer.json -------------------------------------------------------------------------------- /23-24/3A44/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/composer.lock -------------------------------------------------------------------------------- /23-24/3A44/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/config/bundles.php -------------------------------------------------------------------------------- /23-24/3A44/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/config/packages/twig.yaml -------------------------------------------------------------------------------- /23-24/3A44/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/config/preload.php -------------------------------------------------------------------------------- /23-24/3A44/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/config/routes.yaml -------------------------------------------------------------------------------- /23-24/3A44/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/config/services.yaml -------------------------------------------------------------------------------- /23-24/3A44/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/docker-compose.yml -------------------------------------------------------------------------------- /23-24/3A44/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A44/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/phpunit.xml.dist -------------------------------------------------------------------------------- /23-24/3A44/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/public/index.php -------------------------------------------------------------------------------- /23-24/3A44/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A44/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A44/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Entity/Author.php -------------------------------------------------------------------------------- /23-24/3A44/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Entity/Book.php -------------------------------------------------------------------------------- /23-24/3A44/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Entity/Product.php -------------------------------------------------------------------------------- /23-24/3A44/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Form/AuthorType.php -------------------------------------------------------------------------------- /23-24/3A44/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Form/BookType.php -------------------------------------------------------------------------------- /23-24/3A44/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/src/Kernel.php -------------------------------------------------------------------------------- /23-24/3A44/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A44/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/symfony.lock -------------------------------------------------------------------------------- /23-24/3A44/templates/author/show.html.twig: -------------------------------------------------------------------------------- 1 |

Bonjour {{ nameAuthor }}

2 | -------------------------------------------------------------------------------- /23-24/3A44/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/templates/base.html.twig -------------------------------------------------------------------------------- /23-24/3A44/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A44/tests/bootstrap.php -------------------------------------------------------------------------------- /23-24/3A44/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A45/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.env -------------------------------------------------------------------------------- /23-24/3A45/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.env.test -------------------------------------------------------------------------------- /23-24/3A45/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.gitignore -------------------------------------------------------------------------------- /23-24/3A45/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /23-24/3A45/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /23-24/3A45/.idea/3A45.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/3A45.iml -------------------------------------------------------------------------------- /23-24/3A45/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/misc.xml -------------------------------------------------------------------------------- /23-24/3A45/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/modules.xml -------------------------------------------------------------------------------- /23-24/3A45/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/php.xml -------------------------------------------------------------------------------- /23-24/3A45/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/phpunit.xml -------------------------------------------------------------------------------- /23-24/3A45/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/.idea/vcs.xml -------------------------------------------------------------------------------- /23-24/3A45/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/bin/console -------------------------------------------------------------------------------- /23-24/3A45/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/bin/phpunit -------------------------------------------------------------------------------- /23-24/3A45/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/composer.json -------------------------------------------------------------------------------- /23-24/3A45/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/composer.lock -------------------------------------------------------------------------------- /23-24/3A45/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/config/bundles.php -------------------------------------------------------------------------------- /23-24/3A45/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/config/packages/twig.yaml -------------------------------------------------------------------------------- /23-24/3A45/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/config/preload.php -------------------------------------------------------------------------------- /23-24/3A45/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/config/routes.yaml -------------------------------------------------------------------------------- /23-24/3A45/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/config/services.yaml -------------------------------------------------------------------------------- /23-24/3A45/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A45/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/phpunit.xml.dist -------------------------------------------------------------------------------- /23-24/3A45/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/public/index.php -------------------------------------------------------------------------------- /23-24/3A45/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A45/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A45/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/src/Entity/Author.php -------------------------------------------------------------------------------- /23-24/3A45/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/src/Entity/Book.php -------------------------------------------------------------------------------- /23-24/3A45/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/src/Form/BookType.php -------------------------------------------------------------------------------- /23-24/3A45/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/src/Kernel.php -------------------------------------------------------------------------------- /23-24/3A45/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/3A45/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/symfony.lock -------------------------------------------------------------------------------- /23-24/3A45/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/templates/base.html.twig -------------------------------------------------------------------------------- /23-24/3A45/templates/contact/index.html.twig: -------------------------------------------------------------------------------- 1 | hello 3A45 2 | -------------------------------------------------------------------------------- /23-24/3A45/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/3A45/tests/bootstrap.php -------------------------------------------------------------------------------- /23-24/3A45/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/4SE4/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.env -------------------------------------------------------------------------------- /23-24/4SE4/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.env.test -------------------------------------------------------------------------------- /23-24/4SE4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.gitignore -------------------------------------------------------------------------------- /23-24/4SE4/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /23-24/4SE4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/4SE4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/4SE4.iml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/misc.xml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/modules.xml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/php.xml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/phpunit.xml -------------------------------------------------------------------------------- /23-24/4SE4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/.idea/vcs.xml -------------------------------------------------------------------------------- /23-24/4SE4/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/bin/console -------------------------------------------------------------------------------- /23-24/4SE4/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/bin/phpunit -------------------------------------------------------------------------------- /23-24/4SE4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/composer.json -------------------------------------------------------------------------------- /23-24/4SE4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/composer.lock -------------------------------------------------------------------------------- /23-24/4SE4/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/config/bundles.php -------------------------------------------------------------------------------- /23-24/4SE4/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/config/packages/twig.yaml -------------------------------------------------------------------------------- /23-24/4SE4/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/config/preload.php -------------------------------------------------------------------------------- /23-24/4SE4/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/config/routes.yaml -------------------------------------------------------------------------------- /23-24/4SE4/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/config/services.yaml -------------------------------------------------------------------------------- /23-24/4SE4/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/4SE4/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/phpunit.xml.dist -------------------------------------------------------------------------------- /23-24/4SE4/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/public/index.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/4SE4/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/4SE4/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/src/Entity/Author.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/src/Entity/Book.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/src/Entity/Product.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/src/Form/BookType.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/src/Kernel.php -------------------------------------------------------------------------------- /23-24/4SE4/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23-24/4SE4/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/symfony.lock -------------------------------------------------------------------------------- /23-24/4SE4/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/templates/base.html.twig -------------------------------------------------------------------------------- /23-24/4SE4/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/23-24/4SE4/tests/bootstrap.php -------------------------------------------------------------------------------- /23-24/4SE4/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.env -------------------------------------------------------------------------------- /25-26/3A27/.env.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.env.test -------------------------------------------------------------------------------- /25-26/3A27/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.gitignore -------------------------------------------------------------------------------- /25-26/3A27/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/.gitignore -------------------------------------------------------------------------------- /25-26/3A27/.idea/3A27.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/3A27.iml -------------------------------------------------------------------------------- /25-26/3A27/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/modules.xml -------------------------------------------------------------------------------- /25-26/3A27/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/php.xml -------------------------------------------------------------------------------- /25-26/3A27/.idea/symfony2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/symfony2.xml -------------------------------------------------------------------------------- /25-26/3A27/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/.idea/vcs.xml -------------------------------------------------------------------------------- /25-26/3A27/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/assets/app.js -------------------------------------------------------------------------------- /25-26/3A27/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/assets/bootstrap.js -------------------------------------------------------------------------------- /25-26/3A27/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/assets/controllers.json -------------------------------------------------------------------------------- /25-26/3A27/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /25-26/3A27/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/bin/console -------------------------------------------------------------------------------- /25-26/3A27/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/bin/phpunit -------------------------------------------------------------------------------- /25-26/3A27/compose.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/compose.override.yaml -------------------------------------------------------------------------------- /25-26/3A27/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/compose.yaml -------------------------------------------------------------------------------- /25-26/3A27/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/composer.json -------------------------------------------------------------------------------- /25-26/3A27/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/composer.lock -------------------------------------------------------------------------------- /25-26/3A27/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/config/bundles.php -------------------------------------------------------------------------------- /25-26/3A27/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/config/packages/twig.yaml -------------------------------------------------------------------------------- /25-26/3A27/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/config/preload.php -------------------------------------------------------------------------------- /25-26/3A27/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/config/routes.yaml -------------------------------------------------------------------------------- /25-26/3A27/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/config/services.yaml -------------------------------------------------------------------------------- /25-26/3A27/importmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/importmap.php -------------------------------------------------------------------------------- /25-26/3A27/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/phpunit.dist.xml -------------------------------------------------------------------------------- /25-26/3A27/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/public/index.php -------------------------------------------------------------------------------- /25-26/3A27/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/src/Entity/Author.php -------------------------------------------------------------------------------- /25-26/3A27/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/src/Entity/Book.php -------------------------------------------------------------------------------- /25-26/3A27/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/src/Form/AuthorType.php -------------------------------------------------------------------------------- /25-26/3A27/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/src/Form/BookType.php -------------------------------------------------------------------------------- /25-26/3A27/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/src/Kernel.php -------------------------------------------------------------------------------- /25-26/3A27/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A27/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/symfony.lock -------------------------------------------------------------------------------- /25-26/3A27/templates/product/show.html.twig: -------------------------------------------------------------------------------- 1 |

#Free Gaza

-------------------------------------------------------------------------------- /25-26/3A27/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A27/tests/bootstrap.php -------------------------------------------------------------------------------- /25-26/3A27/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.env -------------------------------------------------------------------------------- /25-26/3A28/.env.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.env.test -------------------------------------------------------------------------------- /25-26/3A28/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.gitignore -------------------------------------------------------------------------------- /25-26/3A28/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.idea/.gitignore -------------------------------------------------------------------------------- /25-26/3A28/.idea/3A28.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.idea/3A28.iml -------------------------------------------------------------------------------- /25-26/3A28/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.idea/modules.xml -------------------------------------------------------------------------------- /25-26/3A28/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.idea/php.xml -------------------------------------------------------------------------------- /25-26/3A28/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/.idea/vcs.xml -------------------------------------------------------------------------------- /25-26/3A28/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/assets/app.js -------------------------------------------------------------------------------- /25-26/3A28/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/assets/bootstrap.js -------------------------------------------------------------------------------- /25-26/3A28/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/assets/controllers.json -------------------------------------------------------------------------------- /25-26/3A28/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /25-26/3A28/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/bin/console -------------------------------------------------------------------------------- /25-26/3A28/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/bin/phpunit -------------------------------------------------------------------------------- /25-26/3A28/compose.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/compose.override.yaml -------------------------------------------------------------------------------- /25-26/3A28/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/compose.yaml -------------------------------------------------------------------------------- /25-26/3A28/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/composer.json -------------------------------------------------------------------------------- /25-26/3A28/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/composer.lock -------------------------------------------------------------------------------- /25-26/3A28/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/config/bundles.php -------------------------------------------------------------------------------- /25-26/3A28/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/config/preload.php -------------------------------------------------------------------------------- /25-26/3A28/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/config/routes.yaml -------------------------------------------------------------------------------- /25-26/3A28/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/config/services.yaml -------------------------------------------------------------------------------- /25-26/3A28/importmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/importmap.php -------------------------------------------------------------------------------- /25-26/3A28/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/phpunit.dist.xml -------------------------------------------------------------------------------- /25-26/3A28/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/public/index.php -------------------------------------------------------------------------------- /25-26/3A28/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/src/Entity/Author.php -------------------------------------------------------------------------------- /25-26/3A28/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/src/Entity/Book.php -------------------------------------------------------------------------------- /25-26/3A28/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/src/Form/AuthorType.php -------------------------------------------------------------------------------- /25-26/3A28/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/src/Form/BookType.php -------------------------------------------------------------------------------- /25-26/3A28/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/src/Kernel.php -------------------------------------------------------------------------------- /25-26/3A28/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A28/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/symfony.lock -------------------------------------------------------------------------------- /25-26/3A28/templates/student/show.html.twig: -------------------------------------------------------------------------------- 1 |

#Free Gaza

-------------------------------------------------------------------------------- /25-26/3A28/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A28/tests/bootstrap.php -------------------------------------------------------------------------------- /25-26/3A28/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.env -------------------------------------------------------------------------------- /25-26/3A29/.env.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.env.test -------------------------------------------------------------------------------- /25-26/3A29/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.gitignore -------------------------------------------------------------------------------- /25-26/3A29/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.idea/.gitignore -------------------------------------------------------------------------------- /25-26/3A29/.idea/3A29.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.idea/3A29.iml -------------------------------------------------------------------------------- /25-26/3A29/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.idea/modules.xml -------------------------------------------------------------------------------- /25-26/3A29/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.idea/php.xml -------------------------------------------------------------------------------- /25-26/3A29/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/.idea/vcs.xml -------------------------------------------------------------------------------- /25-26/3A29/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/assets/app.js -------------------------------------------------------------------------------- /25-26/3A29/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/assets/bootstrap.js -------------------------------------------------------------------------------- /25-26/3A29/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/assets/controllers.json -------------------------------------------------------------------------------- /25-26/3A29/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /25-26/3A29/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/bin/console -------------------------------------------------------------------------------- /25-26/3A29/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/bin/phpunit -------------------------------------------------------------------------------- /25-26/3A29/compose.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/compose.override.yaml -------------------------------------------------------------------------------- /25-26/3A29/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/compose.yaml -------------------------------------------------------------------------------- /25-26/3A29/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/composer.json -------------------------------------------------------------------------------- /25-26/3A29/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/composer.lock -------------------------------------------------------------------------------- /25-26/3A29/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/config/bundles.php -------------------------------------------------------------------------------- /25-26/3A29/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/config/preload.php -------------------------------------------------------------------------------- /25-26/3A29/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/config/routes.yaml -------------------------------------------------------------------------------- /25-26/3A29/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/config/services.yaml -------------------------------------------------------------------------------- /25-26/3A29/importmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/importmap.php -------------------------------------------------------------------------------- /25-26/3A29/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/phpunit.dist.xml -------------------------------------------------------------------------------- /25-26/3A29/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/public/index.php -------------------------------------------------------------------------------- /25-26/3A29/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Entity/Author.php -------------------------------------------------------------------------------- /25-26/3A29/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Entity/Book.php -------------------------------------------------------------------------------- /25-26/3A29/src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Entity/Product.php -------------------------------------------------------------------------------- /25-26/3A29/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Form/AuthorType.php -------------------------------------------------------------------------------- /25-26/3A29/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Form/BookType.php -------------------------------------------------------------------------------- /25-26/3A29/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/src/Kernel.php -------------------------------------------------------------------------------- /25-26/3A29/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/3A29/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/symfony.lock -------------------------------------------------------------------------------- /25-26/3A29/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/3A29/tests/bootstrap.php -------------------------------------------------------------------------------- /25-26/3A29/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.env -------------------------------------------------------------------------------- /25-26/4SE2/.env.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.env.test -------------------------------------------------------------------------------- /25-26/4SE2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.gitignore -------------------------------------------------------------------------------- /25-26/4SE2/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.idea/.gitignore -------------------------------------------------------------------------------- /25-26/4SE2/.idea/4SE2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.idea/4SE2.iml -------------------------------------------------------------------------------- /25-26/4SE2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.idea/modules.xml -------------------------------------------------------------------------------- /25-26/4SE2/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.idea/php.xml -------------------------------------------------------------------------------- /25-26/4SE2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/.idea/vcs.xml -------------------------------------------------------------------------------- /25-26/4SE2/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/assets/app.js -------------------------------------------------------------------------------- /25-26/4SE2/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/assets/bootstrap.js -------------------------------------------------------------------------------- /25-26/4SE2/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/assets/controllers.json -------------------------------------------------------------------------------- /25-26/4SE2/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /25-26/4SE2/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/bin/console -------------------------------------------------------------------------------- /25-26/4SE2/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/bin/phpunit -------------------------------------------------------------------------------- /25-26/4SE2/compose.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/compose.override.yaml -------------------------------------------------------------------------------- /25-26/4SE2/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/compose.yaml -------------------------------------------------------------------------------- /25-26/4SE2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/composer.json -------------------------------------------------------------------------------- /25-26/4SE2/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/composer.lock -------------------------------------------------------------------------------- /25-26/4SE2/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/config/bundles.php -------------------------------------------------------------------------------- /25-26/4SE2/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/config/preload.php -------------------------------------------------------------------------------- /25-26/4SE2/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/config/routes.yaml -------------------------------------------------------------------------------- /25-26/4SE2/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/config/services.yaml -------------------------------------------------------------------------------- /25-26/4SE2/importmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/importmap.php -------------------------------------------------------------------------------- /25-26/4SE2/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/phpunit.dist.xml -------------------------------------------------------------------------------- /25-26/4SE2/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/css/style.css -------------------------------------------------------------------------------- /25-26/4SE2/public/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/img/about.jpg -------------------------------------------------------------------------------- /25-26/4SE2/public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/img/favicon.png -------------------------------------------------------------------------------- /25-26/4SE2/public/img/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/img/hero-bg.jpg -------------------------------------------------------------------------------- /25-26/4SE2/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/index.php -------------------------------------------------------------------------------- /25-26/4SE2/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/public/js/main.js -------------------------------------------------------------------------------- /25-26/4SE2/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/src/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/src/Entity/Author.php -------------------------------------------------------------------------------- /25-26/4SE2/src/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/src/Entity/Book.php -------------------------------------------------------------------------------- /25-26/4SE2/src/Form/AuthorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/src/Form/AuthorType.php -------------------------------------------------------------------------------- /25-26/4SE2/src/Form/BookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/src/Form/BookType.php -------------------------------------------------------------------------------- /25-26/4SE2/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/src/Kernel.php -------------------------------------------------------------------------------- /25-26/4SE2/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/symfony.lock -------------------------------------------------------------------------------- /25-26/4SE2/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/tests/bootstrap.php -------------------------------------------------------------------------------- /25-26/4SE2/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/var/cache/dev/App_KernelDevDebugContainer.php.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/var/log/dev.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/var/log/dev.log -------------------------------------------------------------------------------- /25-26/4SE2/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/autoload.php -------------------------------------------------------------------------------- /25-26/4SE2/vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/bin/php-parse -------------------------------------------------------------------------------- /25-26/4SE2/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/bin/phpunit -------------------------------------------------------------------------------- /25-26/4SE2/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /25-26/4SE2/vendor/bin/yaml-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/bin/yaml-lint -------------------------------------------------------------------------------- /25-26/4SE2/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/composer/LICENSE -------------------------------------------------------------------------------- /25-26/4SE2/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /25-26/4SE2/vendor/psr/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /25-26/4SE2/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/25-26/4SE2/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /25-26/4SE2/vendor/symfony/intl/Resources/data/version.txt: -------------------------------------------------------------------------------- 1 | 77.1 2 | -------------------------------------------------------------------------------- /25-26/4SE2/vendor/symfony/web-profiler-bundle/Resources/views/Profiler/ajax_layout.html.twig: -------------------------------------------------------------------------------- 1 | {% block panel '' %} 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayarii/Symfony/HEAD/README.md --------------------------------------------------------------------------------