1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-16 11:04:43 +02:00

removed PHP < 7.1 support

This commit is contained in:
David Grudl
2017-03-08 14:02:10 +01:00
parent e1598cc7da
commit 7f8e36c1e1
11 changed files with 12 additions and 573 deletions

View File

@@ -35,10 +35,6 @@ if ($config['system'] === 'odbc') {
$config['dsn'] = str_replace('data/odbc.mdb', TEMP_DIR . '/odbc.mdb', $config['dsn']);
}
if ($config['driver'] === 'mysql' && PHP_VERSION_ID >= 70000) {
Tester\Environment::skip('mysql driver is not supported on PHP 7');
}
$conn = new Dibi\Connection($config);