Skip to content

Commit 25102ac

Browse files
authored
Merge pull request #325 from abias/issue-324
Reflect recent PHP versions
2 parents f93dccd + b4cc6bb commit 25102ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ When you change them, use `bin/moodle-docker-compose down && bin/moodle-docker-c
216216
| `MOODLE_DOCKER_DB` | yes | pgsql, mariadb, mysql, mssql, oracle | none | The database server to run against |
217217
| `MOODLE_DOCKER_WWWROOT` | yes | path on your file system | none | The path to the Moodle codebase you intend to test |
218218
| `MOODLE_DOCKER_DB_VERSION` | no | Docker tag - see relevant database page on docker-hub | mysql: 8.0 <br/>pgsql: 13 <br/>mariadb: 10.7 <br/>mssql: 2017-latest <br/>oracle: 21| The database server docker image tag |
219-
| `MOODLE_DOCKER_PHP_VERSION` | no | 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6| 8.2 | The php version to use |
219+
| `MOODLE_DOCKER_PHP_VERSION` | no | 8.4, 8.3, 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6| 8.2 | The php version to use |
220220
| `MOODLE_DOCKER_BROWSER` | no | firefox, chrome, firefox:&lt;tag&gt;, chrome:&lt;tag&gt; | firefox:3 | The browser to run Behat against. Supports a colon notation to specify a specific Selenium docker image version to use. e.g. firefox:2.53.1 can be used to run with older versions of Moodle (<3.5) |
221221
| `MOODLE_DOCKER_PHPUNIT_EXTERNAL_SERVICES` | no | any value | not set | If set, dependencies for memcached, redis, solr, and openldap are added |
222222
| `MOODLE_DOCKER_BBB_MOCK` | no | any value | not set | If set the BigBlueButton mock image is started and configured |

config.docker-template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
$CFG->noreplyaddress = '[email protected]';
5656

5757
// Debug options - possible to be controlled by flag in future..
58-
$CFG->debug = (E_ALL | E_STRICT); // DEBUG_DEVELOPER
58+
$CFG->debug = (E_ALL); // DEBUG_DEVELOPER
5959
$CFG->debugdisplay = 1;
6060
$CFG->debugstringids = 1; // Add strings=1 to url to get string ids.
6161
$CFG->perfdebug = 15;

0 commit comments

Comments
 (0)