Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Mar 16, 2024
1 parent 3d801a5 commit 88646b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
php: [ 8.3, 8.2 ]
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, oracle ] # TODO[L11]: singlestore, firebird
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv, singlestore, oracle ] # TODO[L11]: firebird
release: [ stable, lowest ]
include:
- php: 8.3
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"singlestoredb/singlestoredb-laravel": "^1.5.4",
"yajra/laravel-oci8": "^11.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function getEnvironmentSetUp($app)

protected function getPackageProviders($app)
{
return [Oci8ServiceProvider::class]; // TODO[L11]
return [Oci8ServiceProvider::class, SingleStoreProvider::class]; // TODO[L11]
return [Oci8ServiceProvider::class, SingleStoreProvider::class, FirebirdServiceProvider::class];
}
}

0 comments on commit 88646b0

Please sign in to comment.