Skip to content

Commit

Permalink
Follow-up #111 - update requirements etc
Browse files Browse the repository at this point in the history
* Update codeception/c3
* Update laravel-doctrine/extensions
* Add redis sample config (.env)
* Use 'file' as a default cache driver
  • Loading branch information
yukoff committed Aug 20, 2017
1 parent 5bb3ab7 commit 7be1b3f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,12 @@ DB_PORT=3306
DB_DATABASE=toloka
DB_USERNAME=toloka
DB_PASSWORD=toloka

# Cache driver
#CACHE_DRIVER=redis

# Redis credentials
REDIS_HOST=redis
#REDIS_PORT=6379
#REDIS_DATABASE=0
#REDIS_PASSWORD=RedisPassword
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
},
"require-dev": {
"codacy/coverage": "dev-master",
"codeception/c3": "^2.0",
"codeception/c3": "^2.0.12",
"codeception/codeception": "^2.3",
"codeclimate/php-test-reporter": "dev-master",
"doctrine/dbal": "^2.5",
"gedmo/doctrine-extensions": "^2.4",
"laravel-doctrine/extensions": "^1.0",
"laravel-doctrine/extensions": "^1.0.11",
"laravel-doctrine/migrations": "^1.1",
"laravel-doctrine/orm": "^1.3",
"laravel/framework": "^5.4",
Expand Down
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

return [
'default' => env('CACHE_DRIVER', 'redis'),
'default' => env('CACHE_DRIVER', 'file'),
'stores' => [

'apc' => [
Expand Down

0 comments on commit 7be1b3f

Please sign in to comment.