Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ script:
- ./bin/console lint:yaml app/config
- ./bin/console lint:yaml @CodeExplorerBundle
# this checks that the Twig template files contain no syntax errors
- ./bin/console lint:twig app/Resources @CodeExplorerBundle
- ./bin/console lint:twig templates @CodeExplorerBundle
# this checks that the XLIFF translations contain no syntax errors
- ./bin/console lint:xliff app/Resources
- ./bin/console lint:xliff translations
# this checks that the application doesn't use dependencies with known security vulnerabilities
- ./bin/console security:check --end-point=http://security.sensiolabs.org/check_lock
5 changes: 4 additions & 1 deletion app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ framework:
# and with different cache configurations for each fragment
# https://symfony.com/doc/current/book/http_cache.html#edge-side-includes
esi: { enabled: true }
translator: { fallback: '%locale%' }
translator: { fallback: '%locale%', paths: ['%kernel.project_dir%/translations'] }
secret: '%env(SYMFONY_SECRET)%'
router:
resource: '%kernel.project_dir%/app/config/routing.yml'
Expand Down Expand Up @@ -64,6 +64,9 @@ twig:
form_themes:
- 'form/layout.html.twig'
- 'form/fields.html.twig'
paths:
'%kernel.project_dir%/templates/TwigBundle': Twig
'%kernel.project_dir%/templates': ~

# Doctrine Configuration (used to access databases and manipulate their information)
doctrine:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.