Compare commits

..
Author SHA1 Message Date
github-action[bot]andgithub-action[bot] 637e4bbd79 Create Flex endpoint 2026-09-21 14:35:33 +00:00
3 changed files with 48 additions and 73 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"manifests": {
"calliostro/spotify-bundle": {
"manifest": {
"bundles": {
"Calliostro\\SpotifyBundle\\CalliostroSpotifyBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SPOTIFY_CLIENT_ID": "",
"SPOTIFY_CLIENT_SECRET": ""
}
},
"files": {
"config/packages/calliostro_spotify.yaml": {
"contents": [
"calliostro_spotify:",
" # Required for Client Credentials Flow (get from https://developer.spotify.com/dashboard)",
" client_id: '%env(SPOTIFY_CLIENT_ID)%'",
" client_secret: '%env(SPOTIFY_CLIENT_SECRET)%'",
"",
" # Optional: HTTP User-Agent header for API requests",
" # user_agent: 'MyApp/1.0 (+https://myapp.com)'",
"",
" # Optional: Retry resilience and token management settings (defaults shown)",
" # auto_retry: true # Automatically wait and retry on 429 rate limits (default: true)",
" # max_retries: 3 # Maximum number of retry attempts (default: 3)",
" # proactive_refresh: true # Renew tokens proactively before expiration (default: true)",
"",
" # Optional: Proactive rate limiting (requires symfony/rate-limiter)",
" # rate_limiter: spotify_api",
""
],
"executable": false
}
},
"ref": "0b121b26a0353d9a24db117c446e63f37455b385"
}
}
}
+4 -4
View File
@@ -1,8 +1,8 @@
{
"aliases": [],
"recipes": {
"tito10047/iconcaptcha-bundle": [
"0.1"
"calliostro/spotify-bundle": [
"1.0"
]
},
"recipe-conflicts": [],
@@ -12,9 +12,9 @@
"_links": {
"repository": "github.com/symfony/recipes-contrib",
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2036/{package_dotted}.{version}.json",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2068/{package_dotted}.{version}.json",
"recipe_template_relative": "{package_dotted}.{version}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2036/archived/{package_dotted}/{ref}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2068/archived/{package_dotted}/{ref}.json",
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
}
}
-69
View File
@@ -1,69 +0,0 @@
{
"manifests": {
"tito10047/iconcaptcha-bundle": {
"manifest": {
"bundles": {
"Tito10047\\IconcaptchaBundle\\IconcaptchaBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"add-lines": [
{
"file": "assets/app.js",
"content": "import '@fabianwennink/iconcaptcha/css/iconcaptcha.min.css';",
"position": "top",
"requires": "symfony/asset-mapper",
"warn_if_missing": true
}
],
"post-install-output": [
" <bg=blue;fg=white> </>",
" <bg=blue;fg=white> What's next? </>",
" <bg=blue;fg=white> </>",
"",
" * The captcha needs a session: make sure <comment>framework.session</> is enabled.",
"",
" * <fg=blue>Add</> the widget to a form:",
" <comment>$builder->add('captcha', Tito10047\\IconcaptchaBundle\\Type\\IconCaptchaType::class);</>",
"",
" * <fg=blue>Serve</> the client assets. With AssetMapper they were just declared in",
" <comment>importmap.php</>; without it, run <comment>php bin/console iconcaptcha:install-assets</>",
" once and after every update of <comment>fabianwennink/iconcaptcha</>.",
"",
" * <fg=blue>Read</> the documentation at <comment>https://github.com/tito10047/IconCaptchaBundle</>",
""
]
},
"files": {
"config/packages/icon_captcha.yaml": {
"contents": [
"icon_captcha:",
" theme: light",
"",
"# A test cannot solve a challenge, so the protected form has to stay submittable.",
"# \"enable: false\" switches both ends at once: nothing is rendered and the",
"# constraint always passes.",
"when@test:",
" icon_captcha:",
" enable: false",
""
],
"executable": false
},
"config/routes/icon_captcha.yaml": {
"contents": [
"icon_captcha:",
" resource: '@IconcaptchaBundle/config/routes.php'",
" type: php",
""
],
"executable": false
}
},
"ref": "29a446fc32a16544b332e67f3cfaa02b6d0f3a12"
}
}
}