Skip to content

Commit

Permalink
add illuminate support
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Oct 4, 2024
1 parent 0a0d205 commit 2f08579
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"nesbot/carbon": "^3.7"
"nesbot/carbon": "^3.7",
"illuminate/support": "^11.26"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
"phpunit/phpunit": "10.0"
},
"extra": {
"laravel":{
Expand Down
2 changes: 1 addition & 1 deletion src/OddsApiServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class OddsApiServiceProvider extends ServiceProvider
{
public function boot()
public function boot(): void
{
$this->publishes([
__DIR__ . '/../config/odds-api.php' => config_path('odds-api.php')
Expand Down

0 comments on commit 2f08579

Please sign in to comment.