diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index c2d81c1e..8f4da55d 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -1,7 +1,6 @@ oka_file: db_driver: orm storage: - root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' + root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%' webserver: - host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' - + host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%' diff --git a/coka/file-bundle/3.0/manifest.json b/coka/file-bundle/3.0/manifest.json index 819a632e..e4f6ecdd 100644 --- a/coka/file-bundle/3.0/manifest.json +++ b/coka/file-bundle/3.0/manifest.json @@ -10,4 +10,3 @@ "OKAFILE_STORAGE_WEB_SERVER_HOST": "localhost" } } - diff --git a/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml new file mode 100644 index 00000000..4ab2217b --- /dev/null +++ b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml @@ -0,0 +1,3 @@ +oka_rate_limit: + configs: + - {path: ''} diff --git a/coka/rate-limit-bundle/1.0/manifest.json b/coka/rate-limit-bundle/1.0/manifest.json new file mode 100644 index 00000000..a977cdec --- /dev/null +++ b/coka/rate-limit-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RateLimitBundle\\OkaRateLimitBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml new file mode 100644 index 00000000..b1d17858 --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml @@ -0,0 +1,3 @@ +oka_rest_request_validator: + exception: + enabled: true diff --git a/coka/rest-request-validator-bundle/1.0/manifest.json b/coka/rest-request-validator-bundle/1.0/manifest.json new file mode 100644 index 00000000..aefe617f --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RESTRequestValidatorBundle\\OkaRESTRequestValidatorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}