diff --git a/commercetools/symfony-bundle/0.4/config/packages/commercetools.yaml b/commercetools/symfony-bundle/0.4/config/packages/commercetools.yaml new file mode 100644 index 00000000..25550979 --- /dev/null +++ b/commercetools/symfony-bundle/0.4/config/packages/commercetools.yaml @@ -0,0 +1,11 @@ +commercetools: + api: + default_client: 'default' + clients: + default: + client_id: '%env(CTP_CLIENT_ID)%' + client_secret: '%env(CTP_CLIENT_SECRET)%' + project: '%env(CTP_PROJECT_KEY)%' + scope: '%env(CTP_SCOPES)%' + oauth_url: '%env(CTP_AUTH_URL)%' + api_url: '%env(CTP_API_URL)%' diff --git a/commercetools/symfony-bundle/0.4/manifest.json b/commercetools/symfony-bundle/0.4/manifest.json new file mode 100644 index 00000000..457cf97e --- /dev/null +++ b/commercetools/symfony-bundle/0.4/manifest.json @@ -0,0 +1,18 @@ +{ + "bundles": { + "Commercetools\\Symfony\\CtpBundle\\CtpBundle": ["all"], + "Commercetools\\Symfony\\SetupBundle\\SetupBundle": ["dev"], + "Commercetools\\Symfony\\StateBundle\\StateBundle": ["dev"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "CTP_CLIENT_ID": "", + "CTP_CLIENT_SECRET": "", + "CTP_PROJECT_KEY": "", + "CTP_AUTH_URL": "https://auth.commercetools.com or https://auth.commercetools.co", + "CTP_API_URL": "https://api.commercetools.com or https://api.commercetools.co", + "CTP_SCOPES": "" + } +} diff --git a/commercetools/symfony-bundle/0.4/post-install.txt b/commercetools/symfony-bundle/0.4/post-install.txt new file mode 100644 index 00000000..c544efeb --- /dev/null +++ b/commercetools/symfony-bundle/0.4/post-install.txt @@ -0,0 +1,10 @@ + + Next: commercetools API Configuration + + + * Get your API client credentials from https://mc.commercetools.com or + https://mc.commercetools.co and configure them in your .env + + * commercetools-symfony-bundle documentation https://github.com/commercetools/commercetools-php-symfony + + * commercetools API Documentation: https://docs.commercetools.com/http-api.html