├── .env ├── .env.test ├── .gitignore ├── .travis.yml ├── README.md ├── assets ├── css │ └── app.css ├── js │ └── app.js └── scss │ └── app.scss ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bootstrap.php ├── bundles.php ├── packages │ ├── assets.yaml │ ├── dev │ │ ├── easy_log_handler.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ └── monolog.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── sensio_framework_extra.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ └── web_profiler.yaml │ ├── twig.yaml │ └── webpack_encore.yaml ├── routes.yaml ├── routes │ ├── annotations.yaml │ └── dev │ │ ├── twig.yaml │ │ └── web_profiler.yaml └── services.yaml ├── package.json ├── phpunit.xml.dist ├── public ├── build │ ├── app.css │ └── manifest.json └── index.php ├── src ├── Controller │ ├── DefaultController.php │ ├── RegistrationController.php │ └── SecurityController.php ├── DataFixtures │ ├── .gitignore │ └── AppFixtures.php ├── Entity │ └── User.php ├── EventListener │ ├── RedirectUserListener.php │ └── UpdateLastLoginListener.php ├── Form │ └── UserType.php ├── Kernel.php ├── Migrations │ └── Version20190803221647.php └── Repository │ ├── .gitignore │ └── UserRepository.php ├── symfony.lock ├── templates ├── _formTheme.html.twig ├── base.html.twig ├── bundles │ └── TwigBundle │ │ └── Exception │ │ └── error404.html.twig ├── index.html.twig ├── partials │ ├── flash.html.twig │ ├── footer.html.twig │ └── navigation.html.twig ├── security │ ├── login.html.twig │ └── register.html.twig └── user │ └── profile.html.twig ├── tests └── Controller │ └── DefaultControllerTest.php └── webpack.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------- /assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/assets/scss/app.scss -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/assets.yaml -------------------------------------------------------------------------------- /config/packages/dev/easy_log_handler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/dev/easy_log_handler.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/packages/webpack_encore.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/config/services.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/build/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/public/build/app.css -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Controller/RegistrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Controller/RegistrationController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/DataFixtures/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DataFixtures/AppFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/DataFixtures/AppFixtures.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/EventListener/RedirectUserListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/EventListener/RedirectUserListener.php -------------------------------------------------------------------------------- /src/EventListener/UpdateLastLoginListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/EventListener/UpdateLastLoginListener.php -------------------------------------------------------------------------------- /src/Form/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Form/UserType.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Migrations/Version20190803221647.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Migrations/Version20190803221647.php -------------------------------------------------------------------------------- /src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/_formTheme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/_formTheme.html.twig -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/bundles/TwigBundle/Exception/error404.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/bundles/TwigBundle/Exception/error404.html.twig -------------------------------------------------------------------------------- /templates/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/index.html.twig -------------------------------------------------------------------------------- /templates/partials/flash.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/partials/flash.html.twig -------------------------------------------------------------------------------- /templates/partials/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/partials/footer.html.twig -------------------------------------------------------------------------------- /templates/partials/navigation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/partials/navigation.html.twig -------------------------------------------------------------------------------- /templates/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/security/login.html.twig -------------------------------------------------------------------------------- /templates/security/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/security/register.html.twig -------------------------------------------------------------------------------- /templates/user/profile.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/templates/user/profile.html.twig -------------------------------------------------------------------------------- /tests/Controller/DefaultControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/tests/Controller/DefaultControllerTest.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidanf/symfony4-auth/HEAD/webpack.config.js --------------------------------------------------------------------------------