Skip to content

Commit

Permalink
added support for laravel 10 (#48)
Browse files Browse the repository at this point in the history
* support only laravel v10
  • Loading branch information
myckhel committed Jun 29, 2023
1 parent 8db285e commit 6434127
Show file tree
Hide file tree
Showing 3 changed files with 2,146 additions and 1,619 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0, 8.1]
laravel: [8.*]
php: [8.1, 8.2]
laravel: [10.*]
dependency-version: [prefer-stable]
# dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 10.*
testbench: 8.*

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
"ChatSystem"
],
"require": {
"php": "^8.0",
"illuminate/support": "~7|~8|~9",
"php": "^8.1",
"illuminate/support": "^10",
"nesbot/carbon": "^2.50"
},
"scripts": {
"test": "./vendor/bin/pest"
},
"require-dev": {
"php": "^8",
"fakerphp/faker": "^1.12",
"orchestra/testbench": "~5|~6",
"pestphp/pest": "^1.11",
"spatie/pest-plugin-test-time": "^1.0"
"php": "^8.1",
"fakerphp/faker": "^1.23.0",
"orchestra/testbench": "^8",
"pestphp/pest": "^2.8",
"spatie/pest-plugin-test-time": "^2.0"
},
"autoload": {
"psr-4": {
Expand All @@ -54,4 +54,4 @@
"pestphp/pest-plugin": true
}
}
}
}
Loading

0 comments on commit 6434127

Please sign in to comment.