Issue #2605594 by daffie, pukku, catch, yngens2: Change minimum required sqlite version to 3.7.11

8.2.x
Alex Pott 2016-07-05 09:46:26 +01:00
parent cc6885bde6
commit eadde8da6a
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ Drupal requires:
- Percona Server 5.5.8 (or greater) (http://www.percona.com/). Percona
Server is a backwards-compatible replacement for MySQL.
- PostgreSQL 9.1.2 (or greater) (http://www.postgresql.org/).
- SQLite 3.6.8 (or greater) (http://www.sqlite.org/).
- SQLite 3.7.11 (or greater) (http://www.sqlite.org/).
For more detailed information about Drupal requirements, including a list of
PHP extensions and configurations that are required, see "System requirements"

View File

@ -28,7 +28,7 @@ class Tasks extends InstallTasks {
* {@inheritdoc}
*/
public function minimumVersion() {
return '3.6.8';
return '3.7.11';
}
/**