File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ trim_trailing_whitespace = true
1212
1313[* .md ]
1414trim_trailing_whitespace = false
15+
16+ [* .yml ]
17+ indent_size = 2
Original file line number Diff line number Diff line change 55/tests /CacheTestCase.php
66/tests /BaseTestCase.php
77/tests /data /config.local.php
8- /tests /docker
98/tests /dockerids
Original file line number Diff line number Diff line change 1+ version : ' 3.8'
2+
3+ # NOTE: When using docker-compose for testing, make sure you set 'hostname' to 'redis' in tests/data/config.php
4+
5+ services :
6+
7+ PHP :
8+ image : " yiisoftware/yii2-php:7.4-apache"
9+ networks :
10+ - yii2-redis
11+ volumes :
12+ - ../..:/app # Mount source-code for development
13+
14+ Redis :
15+ image : " redis"
16+ networks :
17+ - yii2-redis
18+ ports :
19+ - " 6379:6379"
20+
21+ networks :
22+ yii2-redis :
23+ driver : bridge
24+ name : yii2-redis
You can’t perform that action at this time.
0 commit comments