Skip to content

Commit

Permalink
Merge pull request #72 from renoki-co/feature/laravel-10.x
Browse files Browse the repository at this point in the history
Laravel 10.x
  • Loading branch information
rennokki authored Apr 5, 2023
2 parents ef8035e + 1ddec96 commit a3b6e32
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
strategy:
fail-fast: false
matrix:
php:
- '8.0'
php:
- '8.1'
- '8.2'
laravel:
- 8.*
- 9.*
- 10.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'
- laravel: '10.*'
testbench: '8.*'

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.1",
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/support": "^8.83|^9.0.1"
"illuminate/support": "^9.35|^10.5"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.21"
"orchestra/testbench": "^7.23|^8.1",
"phpunit/phpunit": "^9.5.25"
},
"autoload": {
"psr-4": {
Expand All @@ -45,5 +44,6 @@
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
"minimum-stability": "stable",
"prefer-stable": true
}
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>
</phpunit>

0 comments on commit a3b6e32

Please sign in to comment.