Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 committed Jul 24, 2020
1 parent 29a53b6 commit e03fac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ when you use sqlite in PHPUnit and you need MySQL version sql, you can set drive
```php
// eloquent-dumper.php
return [
// Supported: "default", "mysql", "sqlite", "postgres", "mssql"
'driver' => env('ELOQUENT_DUMPER_DRIVER', 'mysql'),
// Supported: "pdo", "mysql", "sqlite", "postgres", "mssql"
'driver' => env('ELOQUENT_DUMPER_GRAMMAR', 'mysql'),
];
```
## How to use
Expand Down
2 changes: 1 addition & 1 deletion config/eloquent-dumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
/*
* Supported: "pdo", "mysql", "sqlite", "postgres", "mssql"
*/
'grammar' => env('ELOQUENT_DUMPER_DRIVER', 'pdo'),
'grammar' => env('ELOQUENT_DUMPER_GRAMMAR', 'pdo'),
];

0 comments on commit e03fac4

Please sign in to comment.