File tree Expand file tree Collapse file tree 7 files changed +51
-9
lines changed
framework-bundle/7.0/config/packages Expand file tree Collapse file tree 7 files changed +51
-9
lines changed Original file line number Diff line number Diff line change 2
2
framework :
3
3
secret : ' %env(APP_SECRET)%'
4
4
# csrf_protection: true
5
- handle_all_throwables : true
6
5
7
- # Enables session support. Note that the session will ONLY be started if you read or write from it.
8
- # Remove or comment this section to explicitly disable session support.
9
- session :
10
- handler_id : null
11
- cookie_secure : auto
12
- cookie_samesite : lax
6
+ # Note that the session will be started ONLY if you read or write from it.
7
+ session : true
13
8
14
9
# esi: true
15
10
# fragments: true
16
- php_errors :
17
- log : true
18
11
19
12
when@test :
20
13
framework :
Original file line number Diff line number Diff line change
1
+ framework :
2
+ router :
3
+ # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
4
+ # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
5
+ # default_uri: http://localhost
6
+
7
+ when@prod :
8
+ framework :
9
+ router :
10
+ strict_requirements : null
Original file line number Diff line number Diff line change
1
+ controllers :
2
+ resource :
3
+ path : ../src/Controller/
4
+ namespace : App\Controller
5
+ type : attribute
Original file line number Diff line number Diff line change
1
+ {
2
+ "copy-from-recipe" : {
3
+ "config/" : " %CONFIG_DIR%/"
4
+ },
5
+ "aliases" : [" router" ],
6
+ "conflict" : {
7
+ "symfony/framework-bundle" : " <7.0"
8
+ }
9
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "conflict" : {
3
+ "symfony/framework-bundle" : " <7.0"
4
+ }
5
+ }
Original file line number Diff line number Diff line change
1
+ framework :
2
+ validation :
3
+ # Enables validator auto-mapping support.
4
+ # For instance, basic validation constraints will be inferred from Doctrine's metadata.
5
+ # auto_mapping:
6
+ # App\Entity\: []
7
+
8
+ when@test :
9
+ framework :
10
+ validation :
11
+ not_compromised_password : false
Original file line number Diff line number Diff line change
1
+ {
2
+ "copy-from-recipe" : {
3
+ "config/" : " %CONFIG_DIR%/"
4
+ },
5
+ "aliases" : [" validation" ],
6
+ "conflict" : {
7
+ "symfony/framework-bundle" : " <7.0"
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments