Add support for Symfony Connect

This commit is contained in:
Fabien Potencier
2020-08-07 13:27:05 +02:00
parent 66c9f49b69
commit 572f2186a7
3 changed files with 21 additions and 0 deletions
@@ -0,0 +1,6 @@
symfony_connect:
app_id: '%env(SYMFONY_CONNECT_APP_ID)%'
app_secret: '%env(SYMFONY_CONNECT_APP_SECRET)%'
scope: 'SCOPE_PUBLIC'
# start_template: null
# failure_template: null
@@ -0,0 +1,3 @@
symfony_connect:
prefix: /connect
resource: '@SymfonyConnectBundle/Resources/config/routing/connect.xml'
+12
View File
@@ -0,0 +1,12 @@
{
"bundles": {
"SymfonyCorp\\Connect\\SymfonyConnectBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%"
},
"env": {
"SYMFONY_CONNECT_APP_ID": "",
"SYMFONY_CONNECT_APP_SECRET": ""
}
}