├── .env ├── .env.test ├── .gitignore ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── cache.yaml │ ├── framework.yaml │ ├── routing.yaml │ ├── sensio_framework_extra.yaml │ ├── test │ │ └── validator.yaml │ ├── twig.yaml │ └── validator.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── annotations.yaml │ └── framework.yaml └── services.yaml ├── phpunit.xml.dist ├── public └── index.php ├── src ├── Controller │ ├── .gitignore │ └── ContactController.php ├── Domain │ ├── Data │ │ └── Contact.php │ └── Enum │ │ ├── Age.php │ │ └── Interest.php ├── Form │ └── ContactType.php └── Kernel.php ├── symfony.lock ├── templates ├── base.html.twig └── contact │ ├── index.html.twig │ └── thanks.html.twig └── tests ├── Controller └── ContactControllerTest │ ├── IndexTest.php │ └── ThanksTest.php ├── Form └── ContactTypeTest.php └── bootstrap.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/test/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/test/validator.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/preload.php -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/routes/framework.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/config/services.yaml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Controller/ContactController.php -------------------------------------------------------------------------------- /src/Domain/Data/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Domain/Data/Contact.php -------------------------------------------------------------------------------- /src/Domain/Enum/Age.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Domain/Enum/Age.php -------------------------------------------------------------------------------- /src/Domain/Enum/Interest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Domain/Enum/Interest.php -------------------------------------------------------------------------------- /src/Form/ContactType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Form/ContactType.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/contact/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/templates/contact/index.html.twig -------------------------------------------------------------------------------- /templates/contact/thanks.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/templates/contact/thanks.html.twig -------------------------------------------------------------------------------- /tests/Controller/ContactControllerTest/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/tests/Controller/ContactControllerTest/IndexTest.php -------------------------------------------------------------------------------- /tests/Controller/ContactControllerTest/ThanksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/tests/Controller/ContactControllerTest/ThanksTest.php -------------------------------------------------------------------------------- /tests/Form/ContactTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/tests/Form/ContactTypeTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluesky950520/php-Symfony-playground/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------