-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to use Symfony 3.3 and env() paramters
- Loading branch information
Showing
30 changed files
with
252 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Reusable service for memcache cache for use in tests/docker/platform.sh | ||
services: | ||
cache.memcached: | ||
parent: cache.adapter.memcached | ||
tags: | ||
- name: cache.pool | ||
clearer: cache.app_clearer | ||
# Example from vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/MemcachedTrait.php: | ||
# memcached://user:pass@localhost?weight=33' | ||
provider: 'memcached://%env(CACHE_DSN)%' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Reusable service for redis cache for use in tests/docker/platform.sh | ||
services: | ||
cache.redis: | ||
parent: cache.adapter.redis | ||
tags: | ||
- name: cache.pool | ||
clearer: cache.app_clearer | ||
# Examples from vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/RedisTrait.php: | ||
# redis://localhost:6379 | ||
# redis://[email protected]:1234/13 | ||
# redis://secret@/var/run/redis.sock/13?persistent_id=4&class=Redis&timeout=3&retry_interval=3 | ||
provider: 'redis://%env(CACHE_DSN)%' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ imports: | |
|
||
framework: | ||
router: | ||
resource: '%kernel.root_dir%/config/routing_dev.yml' | ||
resource: '%kernel.project_dir%/app/config/routing_dev.yml' | ||
strict_requirements: true | ||
profiler: { only_exceptions: false } | ||
|
||
|
@@ -16,35 +16,28 @@ monolog: | |
handlers: | ||
main: | ||
type: '%log_type%' | ||
path: '%log_path%' | ||
path: '%env(LOG_PATH)%' | ||
level: debug | ||
channels: ['!event'] | ||
console: | ||
type: console | ||
bubble: false | ||
verbosity_levels: | ||
VERBOSITY_VERBOSE: INFO | ||
VERBOSITY_VERY_VERBOSE: DEBUG | ||
channels: ["!doctrine"] | ||
console_very_verbose: | ||
type: console | ||
bubble: false | ||
verbosity_levels: | ||
VERBOSITY_VERBOSE: NOTICE | ||
VERBOSITY_VERY_VERBOSE: NOTICE | ||
VERBOSITY_DEBUG: DEBUG | ||
channels: ["doctrine"] | ||
process_psr_3_messages: false | ||
channels: ['!event', '!doctrine', '!console'] | ||
# To follow logs in real time, execute the following command: | ||
# `bin/console server:log -vv` | ||
server_log: | ||
type: server_log | ||
process_psr_3_messages: false | ||
host: 127.0.0.1:9911 | ||
|
||
# uncomment to get logging in your browser | ||
# you may have to allow bigger header sizes in your Web server configuration | ||
#firephp: | ||
# type: firephp | ||
# level: info | ||
# type: firephp | ||
# level: info | ||
#chromephp: | ||
# type: chromephp | ||
# level: info | ||
|
||
assetic: | ||
use_controller: true | ||
# type: chromephp | ||
# level: info | ||
|
||
#swiftmailer: | ||
# delivery_address: [email protected] | ||
# delivery_addresses: ['[email protected]'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.