Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
julienj committed May 22, 2019
1 parent 01f1ee2 commit 4e0c707
Show file tree
Hide file tree
Showing 6 changed files with 604 additions and 0 deletions.
19 changes: 19 additions & 0 deletions config/packages/cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
framework:
cache:
# Put the unique name of your app here: the prefix seed
# is used to compute stable namespaces for cache keys.
#prefix_seed: your_vendor_name/app_name

# The app cache caches to the filesystem by default.
# Other options include:

# Redis
#app: cache.adapter.redis
#default_redis_provider: redis://localhost

# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
#app: cache.adapter.apcu

# Namespaced pools use the above "app" backend by default
#pools:
#my.dedicated.cache: ~
21 changes: 21 additions & 0 deletions config/packages/prod/doctrine_mongodb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
doctrine_mongodb:
auto_generate_proxy_classes: false
auto_generate_hydrator_classes: false
document_managers:
default:
metadata_cache_driver:
type: service
id: doctrine_mongodb.system_cache_provider

services:
doctrine_mongodb.system_cache_provider:
class: Symfony\Component\Cache\DoctrineProvider
public: false
arguments:
- '@doctrine_mongodb.system_cache_pool'

framework:
cache:
pools:
doctrine_mongodb.system_cache_pool:
adapter: cache.system
4 changes: 4 additions & 0 deletions config/packages/test/validator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
framework:
validation:
# As of Symfony 4.3 you can disable the NotCompromisedPassword Validator
# disable_not_compromised_password: true
Empty file added src/Controller/.gitignore
Empty file.
Empty file added src/Document/.gitignore
Empty file.
Loading

0 comments on commit 4e0c707

Please sign in to comment.