mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
49 lines
2.1 KiB
JSON
49 lines
2.1 KiB
JSON
{
|
|
"manifests": {
|
|
"symfony/security-bundle": {
|
|
"manifest": {
|
|
"bundles": {
|
|
"Symfony\\Bundle\\SecurityBundle\\SecurityBundle": [
|
|
"all"
|
|
]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
}
|
|
},
|
|
"files": {
|
|
"config/packages/security.yaml": {
|
|
"contents": [
|
|
"security:",
|
|
" # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers",
|
|
" providers:",
|
|
" users_in_memory: { memory: null }",
|
|
" firewalls:",
|
|
" dev:",
|
|
" pattern: ^/(_(profiler|wdt)|css|images|js)/",
|
|
" security: false",
|
|
" main:",
|
|
" anonymous: true",
|
|
" provider: users_in_memory",
|
|
"",
|
|
" # activate different ways to authenticate",
|
|
" # https://symfony.com/doc/current/security.html#firewalls-authentication",
|
|
"",
|
|
" # https://symfony.com/doc/current/security/impersonating_user.html",
|
|
" # switch_user: true",
|
|
"",
|
|
" # Easy way to control access for large sections of your site",
|
|
" # Note: Only the *first* access control that matches will be used",
|
|
" access_control:",
|
|
" # - { path: ^/admin, roles: ROLE_ADMIN }",
|
|
" # - { path: ^/profile, roles: ROLE_USER }",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "38d658ce68375d66d2cddc88892af8f08701e6e7"
|
|
}
|
|
}
|
|
}
|