mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-20 03:26:24 +03:00
* Move discogs-bundle 4.0 config to packages directory * Fix empty config block: uncomment personal_access_token * Fix copy-from-recipe path: copy entire config structure * Trigger CI re-run * Remove trailing newline from manifest.json * Fix line endings: convert CRLF to LF (Unix style) * Activate DISCOGS_PERSONAL_ACCESS_TOKEN in manifest.json - Remove # prefix to make env variable available in .env file - Fixes inconsistency between YAML config and manifest - Thanks @diimpp for catching this issue
16 lines
755 B
YAML
16 lines
755 B
YAML
calliostro_discogs:
|
|
# Recommended: Personal Access Token (get from https://www.discogs.com/settings/developers)
|
|
personal_access_token: '%env(DISCOGS_PERSONAL_ACCESS_TOKEN)%'
|
|
|
|
# Alternative: Consumer credentials for OAuth applications
|
|
# Get from https://www.discogs.com/applications
|
|
# consumer_key: '%env(DISCOGS_CONSUMER_KEY)%'
|
|
# consumer_secret: '%env(DISCOGS_CONSUMER_SECRET)%'
|
|
|
|
# Optional: HTTP User-Agent header for API requests
|
|
# Default: 'DiscogsClient/4.0.0 (+https://github.com/calliostro/php-discogs-api)'
|
|
# user_agent: 'MyApp/1.0 +https://myapp.com'
|
|
|
|
# Optional: Professional rate limiting (requires symfony/rate-limiter)
|
|
# rate_limiter: discogs_api # Your configured RateLimiterFactory service
|