Skip to content

Commit

Permalink
allow laravel 11 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurk91 committed Mar 15, 2024
1 parent 421ed6c commit 5e0cc59
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 9, 10 ]
exclude:
- php: 8.3
laravel: 9
php: [ 8.2, 8.3 ]
laravel: [ 10, 11 ]

name: PHP ${{ matrix.php }} - Laravel v${{ matrix.laravel }}

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
}
],
"require": {
"php": "^8.1",
"illuminate/events": "^9.34 || ^10.0",
"illuminate/notifications": "^9.34 || ^10.0",
"illuminate/support": "^9.34 || ^10.0",
"php": "^8.2",
"illuminate/events": "^10.0 || ^11.0",
"illuminate/notifications": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"kreait/firebase-php": "^7.5",
"kreait/laravel-firebase": "^5.2"
},
"require-dev": {
"orchestra/testbench": "^7.10 || ^8.0",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^9.5 || ^10.0",
"roave/better-reflection": "^6.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</coverage>
<testsuites>
<testsuite name="Test Suite">
<directory suffix=".php">./tests</directory>
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 5e0cc59

Please sign in to comment.