Skip to content

Commit

Permalink
Add support for Laravel 9 (#80)
Browse files Browse the repository at this point in the history
* Add support for Laravel 9

* Add support for Laravel 9

* Add support for Laravel 9

* Add laravel 9 support

* Add laravel 9 support

* Add laravel 9 support

* Add laravel 9 support

* Add laravel 9 support
  • Loading branch information
rubenvanassche authored Feb 1, 2022
1 parent e7e7a17 commit b2d871f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.1, 8.0]
laravel: [^8.73]
laravel: [9.*, ^8.73]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: ^8.73
testbench: ^6.23
- laravel: 9.*
testbench: 7.*

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

Expand Down
20 changes: 11 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/console": "^8.73",
"illuminate/contracts": "^8.73",
"illuminate/http": "^8.73",
"illuminate/support": "^8.73",
"illuminate/console": "^8.73|^9.0",
"illuminate/contracts": "^8.73|^9.0",
"illuminate/http": "^8.73|^9.0",
"illuminate/support": "^8.73|^9.0",
"nyholm/psr7": "^1.4",
"psr/http-message": "^1.0",
"spatie/crawler": "^7.0.5",
"symfony/console": "^5.3",
"symfony/dom-crawler": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/process": "^5.3",
"symfony/console": "^5.3|^6.0",
"symfony/dom-crawler": "^5.3|^6.0",
"symfony/http-foundation": "^5.3|^6.0",
"symfony/process": "^5.3|^6.0",
"symfony/psr-http-message-bridge": "^2.1"
},
"require-dev": {
"orchestra/testbench": "^6.23",
"orchestra/testbench": "^6.23|^7.0",
"phpunit/phpunit": "^9.5"
},
"config": {
Expand All @@ -50,6 +50,8 @@
"Spatie\\Export\\": "src"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"autoload-dev": {
"psr-4": {
"Spatie\\Export\\Tests\\": "tests"
Expand Down

0 comments on commit b2d871f

Please sign in to comment.