diff --git a/coka/api-bundle/3.0/config/packages/oka_api.yaml b/coka/api-bundle/3.0/config/packages/oka_api.yaml index 6a2dbc21..0261faf1 100644 --- a/coka/api-bundle/3.0/config/packages/oka_api.yaml +++ b/coka/api-bundle/3.0/config/packages/oka_api.yaml @@ -8,7 +8,7 @@ oka_api: wsse: enabled: false security_behaviors: - password_updater: true + password_updater: false response: compression: enabled: false diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml new file mode 100644 index 00000000..c2d81c1e --- /dev/null +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -0,0 +1,7 @@ +oka_file: + db_driver: orm + storage: + root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' + webserver: + host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' + diff --git a/coka/file-bundle/3.0/manifest.json b/coka/file-bundle/3.0/manifest.json new file mode 100644 index 00000000..819a632e --- /dev/null +++ b/coka/file-bundle/3.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Oka\\FileBundle\\OkaFileBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "OKAFILE_STORAGE_ROOT_PATH": "%kernel.project_dir%/public", + "OKAFILE_STORAGE_WEB_SERVER_HOST": "localhost" + } +} + diff --git a/coka/pagination-bundle/3.0/config/packages/oka_pagination.yaml b/coka/pagination-bundle/3.0/config/packages/oka_pagination.yaml new file mode 100644 index 00000000..74a2f89f --- /dev/null +++ b/coka/pagination-bundle/3.0/config/packages/oka_pagination.yaml @@ -0,0 +1,4 @@ +oka_pagination: + db_driver: orm + twig: + enable_extension: false diff --git a/coka/pagination-bundle/3.0/manifest.json b/coka/pagination-bundle/3.0/manifest.json new file mode 100644 index 00000000..411770c8 --- /dev/null +++ b/coka/pagination-bundle/3.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\PaginationBundle\\OkaPaginationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}