From e6af85c608066ded43e267c5eca888ed1424fda5 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Wed, 20 Mar 2019 18:57:07 +0000 Subject: [PATCH 1/5] * Add a recipe for coka/pagination-bundle 4.0 --- coka/api-bundle/4.0/config/packages/oka_api.yaml | 14 ++++++++++++++ coka/api-bundle/4.0/manifest.json | 8 ++++++++ 2 files changed, 22 insertions(+) create mode 100644 coka/api-bundle/4.0/config/packages/oka_api.yaml create mode 100644 coka/api-bundle/4.0/manifest.json diff --git a/coka/api-bundle/4.0/config/packages/oka_api.yaml b/coka/api-bundle/4.0/config/packages/oka_api.yaml new file mode 100644 index 00000000..0261faf1 --- /dev/null +++ b/coka/api-bundle/4.0/config/packages/oka_api.yaml @@ -0,0 +1,14 @@ +oka_api: + cors: + default: + allow_credentials: true + expose_headers: ['Accept-Encoding'] + max_age: 3600 + firewalls: + wsse: + enabled: false + security_behaviors: + password_updater: false + response: + compression: + enabled: false diff --git a/coka/api-bundle/4.0/manifest.json b/coka/api-bundle/4.0/manifest.json new file mode 100644 index 00000000..dc012b8a --- /dev/null +++ b/coka/api-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\ApiBundle\\OkaApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 8dd38ece4a55c8e61eb689e21c474a667e86918e Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Wed, 12 Jun 2019 10:34:44 +0000 Subject: [PATCH 2/5] * Add a recipe for coka/wsse-authentication-bundle 1.0. --- .../1.0/config/packages/oka_wsse_authentication.yaml | 2 ++ coka/wsse-authentication-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml create mode 100644 coka/wsse-authentication-bundle/1.0/manifest.json diff --git a/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml b/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml new file mode 100644 index 00000000..2718420b --- /dev/null +++ b/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml @@ -0,0 +1,2 @@ +oka_wsse_authentication: + db_driver: orm diff --git a/coka/wsse-authentication-bundle/1.0/manifest.json b/coka/wsse-authentication-bundle/1.0/manifest.json new file mode 100644 index 00000000..be115763 --- /dev/null +++ b/coka/wsse-authentication-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\WSSEAuthenticationBundle\\OkaWSSEAuthenticationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 39381648f036958cac815e49a03c4f6d382bc721 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 14 Jun 2019 12:39:25 +0000 Subject: [PATCH 3/5] * Fix bad commit. * Update recipe for coka/api-bundle 4.0 --- coka/api-bundle/4.0/config/packages/oka_api.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/coka/api-bundle/4.0/config/packages/oka_api.yaml b/coka/api-bundle/4.0/config/packages/oka_api.yaml index 0261faf1..f3d03095 100644 --- a/coka/api-bundle/4.0/config/packages/oka_api.yaml +++ b/coka/api-bundle/4.0/config/packages/oka_api.yaml @@ -4,11 +4,3 @@ oka_api: allow_credentials: true expose_headers: ['Accept-Encoding'] max_age: 3600 - firewalls: - wsse: - enabled: false - security_behaviors: - password_updater: false - response: - compression: - enabled: false From d32d85524952f43f0bbc60f12c206b53503b4fc9 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 14 Jun 2019 15:30:15 +0000 Subject: [PATCH 4/5] * Updated coka/wsse-authentication-bundle recipe. --- .../1.0/config/packages/oka_wsse_authentication.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml b/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml index 2718420b..06997e2b 100644 --- a/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml +++ b/coka/wsse-authentication-bundle/1.0/config/packages/oka_wsse_authentication.yaml @@ -1,2 +1,4 @@ oka_wsse_authentication: db_driver: orm + nonce: + save_path: '%kernel.cache_dir%/oka_wsse/nonces' From 9640214f241cc3cfd98d7e02406da3fa4c5c2509 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 14 Jun 2019 18:14:25 +0000 Subject: [PATCH 5/5] * Add a recipe for coka/cors-bundle 1.0 --- coka/cors-bundle/1.0/config/packages/oka_cors.yaml | 4 ++++ coka/cors-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 coka/cors-bundle/1.0/config/packages/oka_cors.yaml create mode 100644 coka/cors-bundle/1.0/manifest.json diff --git a/coka/cors-bundle/1.0/config/packages/oka_cors.yaml b/coka/cors-bundle/1.0/config/packages/oka_cors.yaml new file mode 100644 index 00000000..f6046535 --- /dev/null +++ b/coka/cors-bundle/1.0/config/packages/oka_cors.yaml @@ -0,0 +1,4 @@ +oka_cors: + default: + expose_headers: ['Accept-Encoding'] + max_age: 3600 diff --git a/coka/cors-bundle/1.0/manifest.json b/coka/cors-bundle/1.0/manifest.json new file mode 100644 index 00000000..a9d65c52 --- /dev/null +++ b/coka/cors-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\CORSBundle\\OkaCORSBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}