Skip to content

Commit

Permalink
Add support for Laravel 10 (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
codedge committed Feb 17, 2023
1 parent 2385427 commit dc1ce50
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 37 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/composer-normalize.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
laravel: [9.*]
php: ['8.1']
laravel: [10.*]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@
"source": "https://github.com/codedge/laravel-selfupdater"
},
"require": {
"php": "^8.0 || ^8.1",
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.5.0",
"laravel/framework": "^9",
"league/uri": "~6.7|~6.8",
"illuminate/support": "^10",
"league/uri": "~6.7 || ~6.8",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-phpunit": "^1.3"
"phpstan/phpstan-phpunit": "^1.2"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"dg/bypass-finals": "^1.4",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.20",
"phpunit/phpunit": "^9.5.28"
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.5.26"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down

0 comments on commit dc1ce50

Please sign in to comment.