Skip to content

Commit

Permalink
Merge pull request #246 from lptn/drop_laravel_8
Browse files Browse the repository at this point in the history
Drop Laravel 8 support
  • Loading branch information
lptn committed Jan 12, 2023
2 parents 681b22c + e31eae1 commit 08df953
Show file tree
Hide file tree
Showing 11 changed files with 161 additions and 299 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -8,9 +8,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1]
illuminate_version: [8.67.*, 9.7.*]
php: [8.0, 8.1, 8.2]
illuminate_version: [9.7.*]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.2
stability: prefer-lowest

name: P${{ matrix.php }} | I ${{ matrix.illuminate_version }} | ${{ matrix.stability }}

Expand Down
22 changes: 11 additions & 11 deletions composer.json
Expand Up @@ -13,17 +13,17 @@
"require": {
"php": "^8.0",
"ext-simplexml": "*",
"illuminate/config": "^8.0 || ^9.0",
"illuminate/container": "^8.0 || ^9.0",
"illuminate/contracts": "^8.0 || ^9.0",
"illuminate/database": "^8.0 || ^9.0",
"illuminate/events": "^8.0 || ^9.0",
"illuminate/http": "^8.0 || ^9.0",
"illuminate/routing": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"illuminate/view": "^8.0 || ^9.0",
"vimeo/psalm": "^4.8.1|^5",
"orchestra/testbench": "^6.22 || ^7.0",
"illuminate/config": "^9.0",
"illuminate/container": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/database": "^9.0",
"illuminate/events": "^9.0",
"illuminate/http": "^9.0",
"illuminate/routing": "^9.0",
"illuminate/support": "^9.0",
"illuminate/view": "^9.0",
"vimeo/psalm": "^4.8.1 || ^5",
"orchestra/testbench": "^7.0",
"barryvdh/laravel-ide-helper": "^2.10"
},
"require-dev": {
Expand Down
10 changes: 5 additions & 5 deletions psalm-baseline.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="4.22.0@fc2c6ab4d5fa5d644d8617089f012f3bb84b8703">
<file src="src/Providers/ApplicationProvider.php">
<MissingFile occurrences="1">
<code>require $applicationPath</code>
</MissingFile>
<files psalm-version="5.4.0@62db5d4f6a7ae0a20f7cc5a4952d730272fc0863">
<file src="src/Handlers/Eloquent/RelationsMethodHandler.php">
<ArgumentTypeCoercion occurrences="1">
<code>$template_type_parameters</code>
</ArgumentTypeCoercion>
</file>
<file src="src/Providers/ModelStubProvider.php">
<PossiblyUndefinedMethod occurrences="1">
Expand Down
25 changes: 0 additions & 25 deletions stubs/6/EloquentBuilder.stubphp

This file was deleted.

27 changes: 0 additions & 27 deletions stubs/6/HasOneOrMany.stubphp

This file was deleted.

25 changes: 0 additions & 25 deletions stubs/6/helpers.stubphp

This file was deleted.

26 changes: 0 additions & 26 deletions stubs/8/EloquentBuilder.stubphp

This file was deleted.

30 changes: 0 additions & 30 deletions stubs/8/HasOneOrMany.stubphp

This file was deleted.

0 comments on commit 08df953

Please sign in to comment.