mirror of
https://github.com/dg/dibi.git
synced 2025-08-30 17:29:53 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e8559898f1 | ||
|
ece85e8b48 | ||
|
acd5ac8616 | ||
|
44876973f5 |
@@ -20,8 +20,8 @@ install:
|
|||||||
- IF EXIST c:\php5 (SET PHP=0) ELSE (SET PHP=1)
|
- IF EXIST c:\php5 (SET PHP=0) ELSE (SET PHP=1)
|
||||||
- IF %PHP%==1 mkdir c:\php5
|
- IF %PHP%==1 mkdir c:\php5
|
||||||
- IF %PHP%==1 cd c:\php5
|
- IF %PHP%==1 cd c:\php5
|
||||||
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-5.6.14-Win32-VC11-x86.zip
|
- IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-5.6.14-Win32-VC11-x86.zip --output php.zip
|
||||||
- IF %PHP%==1 7z x php-5.6.14-Win32-VC11-x86.zip >nul
|
- IF %PHP%==1 7z x php.zip >nul
|
||||||
- IF %PHP%==1 echo extension_dir=ext >> php.ini
|
- IF %PHP%==1 echo extension_dir=ext >> php.ini
|
||||||
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
|
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
|
||||||
- IF %PHP%==1 appveyor DownloadFile https://files.nette.org/misc/php-sqlsrv.zip
|
- IF %PHP%==1 appveyor DownloadFile https://files.nette.org/misc/php-sqlsrv.zip
|
||||||
@@ -34,8 +34,8 @@ install:
|
|||||||
- IF EXIST c:\php7 (SET PHP=0) ELSE (SET PHP=1)
|
- IF EXIST c:\php7 (SET PHP=0) ELSE (SET PHP=1)
|
||||||
- IF %PHP%==1 mkdir c:\php7
|
- IF %PHP%==1 mkdir c:\php7
|
||||||
- IF %PHP%==1 cd c:\php7
|
- IF %PHP%==1 cd c:\php7
|
||||||
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-7.0.3-Win32-VC14-x86.zip
|
- IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-7.0.3-Win32-VC14-x86.zip --output php.zip
|
||||||
- IF %PHP%==1 7z x php-7.0.3-Win32-VC14-x86.zip >nul
|
- IF %PHP%==1 7z x php.zip >nul
|
||||||
- IF %PHP%==1 echo extension_dir=ext >> php.ini
|
- IF %PHP%==1 echo extension_dir=ext >> php.ini
|
||||||
- IF %PHP%==1 appveyor DownloadFile https://files.nette.org/misc/php-sqlsrv.zip
|
- IF %PHP%==1 appveyor DownloadFile https://files.nette.org/misc/php-sqlsrv.zip
|
||||||
- IF %PHP%==1 7z x php-sqlsrv.zip >nul
|
- IF %PHP%==1 7z x php-sqlsrv.zip >nul
|
||||||
|
@@ -316,7 +316,7 @@ final class Translator
|
|||||||
if ($value !== NULL && !is_scalar($value)) { // array is already processed
|
if ($value !== NULL && !is_scalar($value)) { // array is already processed
|
||||||
if ($value instanceof Literal && ($modifier === 'sql' || $modifier === 'SQL')) {
|
if ($value instanceof Literal && ($modifier === 'sql' || $modifier === 'SQL')) {
|
||||||
$modifier = 'SQL';
|
$modifier = 'SQL';
|
||||||
} elseif (($value instanceof \DateTime || $value instanceof \DateTimeInterface) && ($modifier === 'd' || $modifier === 't')) {
|
} elseif (($value instanceof \DateTime || $value instanceof \DateTimeInterface) && ($modifier === 'd' || $modifier === 't' || $modifier === 'dt')) {
|
||||||
// continue
|
// continue
|
||||||
} else {
|
} else {
|
||||||
$type = is_object($value) ? get_class($value) : gettype($value);
|
$type = is_object($value) ? get_class($value) : gettype($value);
|
||||||
|
@@ -22,8 +22,8 @@ class dibi
|
|||||||
|
|
||||||
/** version */
|
/** version */
|
||||||
const
|
const
|
||||||
VERSION = '3.0.8',
|
VERSION = '3.0.9',
|
||||||
REVISION = 'released on 2017-06-09';
|
REVISION = 'released on 2018-03-09';
|
||||||
|
|
||||||
/** sorting order */
|
/** sorting order */
|
||||||
const
|
const
|
||||||
|
@@ -66,7 +66,6 @@ spl_autoload_register(function ($class) {
|
|||||||
'Dibi\Translator' => 'Translator.php',
|
'Dibi\Translator' => 'Translator.php',
|
||||||
'Dibi\Type' => 'Type.php',
|
'Dibi\Type' => 'Type.php',
|
||||||
], $old2new = [
|
], $old2new = [
|
||||||
'Dibi' => 'dibi.php',
|
|
||||||
'DibiColumnInfo' => 'Dibi\Reflection\Column',
|
'DibiColumnInfo' => 'Dibi\Reflection\Column',
|
||||||
'DibiConnection' => 'Dibi\Connection',
|
'DibiConnection' => 'Dibi\Connection',
|
||||||
'DibiDatabaseInfo' => 'Dibi\Reflection\Database',
|
'DibiDatabaseInfo' => 'Dibi\Reflection\Database',
|
||||||
|
Reference in New Issue
Block a user