Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ jobs:
fail-fast: false
matrix:
php: [ 8.1, 8.2, 8.3, 8.4 ]
laravel: [ '10.*', '11.*', '12.*' ]
laravel: [ '10.*', '11.*', '12.*', '13.*' ]
dependency-version: [ prefer-lowest, prefer-stable ]

exclude:
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.1
- laravel: 13.*
php: 8.1, 8.2

name: P${{ matrix.php }} / L${{ matrix.laravel }} / ${{ matrix.dependency-version }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ third-parties.
## Requirements

- PHP 8.1+
- Laravel 10, 11, or 12
- Laravel 10, 11, 12 or 13

## Installation

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/cache": "^10.0|^11.0|^12.0",
"illuminate/console": "^10.0|^11.0|^12.0"
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"illuminate/cache": "^10.0|^11.0|^12.0|^13.0",
"illuminate/console": "^10.0|^11.0|^12.0|^13.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5|^11.0",
"orchestra/testbench": "^8.21|^9.5|^10.0"
"phpunit/phpunit": "^10.5|^11.0|^12.0",
"orchestra/testbench": "^8.21|^9.5|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion tests/Unit/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@

use AaronFrancis\Flaky\Providers\FlakyServiceProvider;
use AaronFrancis\Flaky\Tests\Support\FlakyTestServiceProvider;
use Illuminate\Foundation\Application;
use Orchestra\Testbench\TestCase;

abstract class Base extends TestCase
{
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
* @param Application $app
* @return void
*/
protected function getEnvironmentSetup($app) {}
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/BasicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,4 @@ public function handles_errors_as_well_as_exceptions()
}
}

class SpecificException extends \Exception {}
class SpecificException extends Exception {}