ソースを参照

Merge branch 'master' into 3.next

Mark Story 8 年 前
コミット
9e200c48bf
2 ファイル変更2 行追加2 行削除
  1. 1 1
      appveyor.yml
  2. 1 1
      src/Database/README.md

+ 1 - 1
appveyor.yml

@@ -27,7 +27,7 @@ init:
 
 install:
   - cd c:\
-  - curl -fsS https://windows.php.net/downloads/releases/php-5.6.34-nts-Win32-VC11-x86.zip -o php.zip
+  - curl -fsS https://windows.php.net/downloads/releases/php-5.6.35-nts-Win32-VC11-x86.zip -o php.zip
   - 7z x php.zip -oc:\php > nul
   - curl -fsS https://dl.dropboxusercontent.com/s/euip490d9183jkr/SQLSRV32.cab -o sqlsrv.cab
   - 7z x sqlsrv.cab -oc:\php\ext php*_56_nts.dll > nul

+ 1 - 1
src/Database/README.md

@@ -55,7 +55,7 @@ directly in the options array:
 use Cake\Database\Connection;
 
 $connection = new Connection([
-	'driver' => 'Cake\Database\Driver\Sqlite'
+	'driver' => 'Cake\Database\Driver\Sqlite',
 	'database' => '/path/to/file.db'
 ]);
 ```