From 0d804a5081d34b1e1afecff7f3e6352619ad200e Mon Sep 17 00:00:00 2001 From: Artem Rodygin Date: Sat, 9 Jun 2018 23:31:12 +1200 Subject: [PATCH] Support for Symfony 4.1 --- .../2.1/config/packages/lazysec.yaml | 15 +++++++++++++++ webinarium/symfony-lazysec/2.1/manifest.json | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 webinarium/symfony-lazysec/2.1/config/packages/lazysec.yaml create mode 100644 webinarium/symfony-lazysec/2.1/manifest.json diff --git a/webinarium/symfony-lazysec/2.1/config/packages/lazysec.yaml b/webinarium/symfony-lazysec/2.1/config/packages/lazysec.yaml new file mode 100644 index 00000000..96fdd828 --- /dev/null +++ b/webinarium/symfony-lazysec/2.1/config/packages/lazysec.yaml @@ -0,0 +1,15 @@ +services: + + # See https://github.com/webinarium/symfony-lazysec/wiki/User-checker + LazySec\Checker\GenericUserChecker: + autowire: true + public: false + + # See https://github.com/webinarium/symfony-lazysec/wiki/User-provider + LazySec\Provider\GenericUserProvider: + autowire: true + public: false + + # Uncomment the line below and update path to your repository there, + # if you want use the 'GenericUserProvider' service from above + #LazySec\Repository\UserRepositoryInterface: '@App\Repository\UserRepository' diff --git a/webinarium/symfony-lazysec/2.1/manifest.json b/webinarium/symfony-lazysec/2.1/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/webinarium/symfony-lazysec/2.1/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}