mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
* Add recipe for pasaia-udala/auth-bundle 1.2 (euskeraz) * Remove empty security.yaml to fix validation error * Add security.yaml with complete authentication configuration * Add Symfony Flex recipe and remove deprecated old recipe - Added complete .recipe/ structure for automatic installation - Includes security.yaml with LDAP and Certificate authenticators - Removed old unused recipe * Fix YAML indentation to 4 spaces as required by recipes-contrib * Add default value for LDAP_ENCRYPTION env var to fix validation * Remove parameters section and hardcode encryption default value * Trigger CI: bundle now requires PHP >= 8.1 (v1.2.1) * Remove security.yaml to avoid overriding user's security configuration * Translate post-install.txt to english and add security.yaml example
17 lines
435 B
JSON
17 lines
435 B
JSON
{
|
|
"bundles": {
|
|
"PasaiaUdala\\AuthBundle\\PasaiakoUdalaAuthBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"env": {
|
|
"LDAP_HOST": "ldap.example.com",
|
|
"LDAP_PORT": "389",
|
|
"LDAP_BASE_DN": "dc=example,dc=com",
|
|
"LDAP_USER_DN_PATTERN": "uid={username},ou=users,dc=example,dc=com",
|
|
"LDAP_BIND_DN": "",
|
|
"LDAP_BIND_PASSWORD": ""
|
|
}
|
|
}
|