From 8c847cfbecb0d4210991f0c773e053fb420ebd5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 28 Oct 2019 16:06:45 +0100 Subject: [PATCH] Add configuration files --- .../dev-master/config/routes/rapsys_air.yaml | 17 +++++++++++++++++ .../dev-master/config/services/rapsys_air.yaml | 15 +++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 rapsys/airbundle/dev-master/config/routes/rapsys_air.yaml create mode 100644 rapsys/airbundle/dev-master/config/services/rapsys_air.yaml diff --git a/rapsys/airbundle/dev-master/config/routes/rapsys_air.yaml b/rapsys/airbundle/dev-master/config/routes/rapsys_air.yaml new file mode 100644 index 0000000..dd63f57 --- /dev/null +++ b/rapsys/airbundle/dev-master/config/routes/rapsys_air.yaml @@ -0,0 +1,17 @@ +rapsys_air_homepage: + path: / + defaults: { _controller: RapsysAirBundle:Default:index } + +rapsys_air_admin: + path: /admin + defaults: { _controller: RapsysAirBundle:Default:admin } + +rapsys_air_contact: + path: /contact + defaults: { _controller: RapsysAirBundle:Default:contact } + +rapsys_air_session: + path: /admin/session/{id} + defaults: { _controller: RapsysAirBundle:Default:session } + requirements: + id: '\d+' diff --git a/rapsys/airbundle/dev-master/config/services/rapsys_air.yaml b/rapsys/airbundle/dev-master/config/services/rapsys_air.yaml new file mode 100644 index 0000000..9f2f696 --- /dev/null +++ b/rapsys/airbundle/dev-master/config/services/rapsys_air.yaml @@ -0,0 +1,15 @@ +services: + rapsys_air.twig.file_get_contents: + class: Rapsys\AirBundle\Twig\FileGetContentsExtension + tags: [ twig.extension ] + rapsys_air.twig.base64: + class: Rapsys\AirBundle\Twig\Base64Extension + tags: [ twig.extension ] + rapsys_air.twig.bb2html: + class: Rapsys\AirBundle\Twig\Bb2htmlExtension + tags: [ twig.extension ] + Rapsys\AirBundle\DataFixtures\AirFixtures: + tags: [ doctrine.fixture.orm ] +# rapsys_air.example: +# class: Rapsys\AirBundle\Example +# arguments: ["@service_id", "plain_value", "%parameter%"] -- 2.41.0