mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-19 02:56:26 +03:00
39 lines
1.5 KiB
JSON
39 lines
1.5 KiB
JSON
{
|
|
"manifests": {
|
|
"datana-gmbh/url-shortener-api": {
|
|
"manifest": {
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"env": {
|
|
"URL_SHORTENER_API_BASE_URI": "",
|
|
"URL_SHORTENER_API_USERNAME": "",
|
|
"URL_SHORTENER_API_PASSWORD": ""
|
|
}
|
|
},
|
|
"files": {
|
|
"config/packages/datana_url_shortener_api.yaml": {
|
|
"contents": [
|
|
"services:",
|
|
" _defaults:",
|
|
" autowire: true",
|
|
"",
|
|
" Datana\\UrlShortener\\Api\\UrlShortenerClient:",
|
|
" arguments:",
|
|
" - '%env(URL_SHORTENER_API_BASE_URI)%'",
|
|
" - '%env(URL_SHORTENER_API_USERNAME)%'",
|
|
" - '%env(URL_SHORTENER_API_PASSWORD)%'",
|
|
"",
|
|
" Datana\\UrlShortener\\Api\\UrlShortenerApi: null",
|
|
" Datana\\UrlShortener\\Api\\FakeUrlShortenerApi: null",
|
|
" Datana\\UrlShortener\\Api\\UrlShortenerApiInterface: '@Datana\\UrlShortener\\Api\\UrlShortenerApi'",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "c6e145cfa3d1dce094c62fc4a814ffc69ca14de4"
|
|
}
|
|
}
|
|
}
|