Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Support Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifzadesina committed Apr 14, 2023
1 parent 9acd147 commit d92efc0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
laravel: ['^8.0', '^9.0']
php: ['7.4', '8.0', '8.1', '8.2']
laravel: ['^8.0', '^9.0', '^10.0']
exclude:
- php: '7.4'
laravel: '^9.0'
- php: '7.4'
laravel: '^10.0'
- php: '8.0'
laravel: '^10.0'

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^8.0|^9.0"
"laravel/framework": "^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 2 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
stopOnFailure="false">
<testsuites>
<testsuite name="Transactional Events Test Suite">
<directory suffix=".php">./tests/</directory>
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit d92efc0

Please sign in to comment.