Skip to content

Commit

Permalink
Upgrade/laravel 10 (#12)
Browse files Browse the repository at this point in the history
* Allow laravel 10

* Fix styling
  • Loading branch information
sinnbeck authored Feb 14, 2023
1 parent 3b146c8 commit 453985f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*]
laravel: [10.*, 9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 10.*
php: 8.0

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
"php": "^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"illuminate/testing": "^9.0",
"illuminate/testing": "^9.0|^10.0",
"symfony/css-selector": "^6.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"nunomaduro/larastan": "^2.2",
"orchestra/testbench": "^7.10",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
Expand Down
3 changes: 0 additions & 3 deletions src/Asserts/Traits/InteractsWithParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
*/
trait InteractsWithParser
{
/**
* @var \Sinnbeck\DomAssertions\Support\DomParser
*/
protected DomParser $parser;

protected function getParser(): DomParser
Expand Down

0 comments on commit 453985f

Please sign in to comment.