Skip to content

Commit

Permalink
Support Laravel 9 (#47)
Browse files Browse the repository at this point in the history
* feat: laravel 9 support

* style: exclude rules

* style: exclude rules

* style: explicit exclude rules

* style: explicit exclude rules

* chore: php version
  • Loading branch information
FarhanShares authored May 23, 2022
1 parent c8c87ca commit f706449
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,26 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*]
php: [7.3, 7.4, 8.0, 8.1]
laravel: [7.*, 8.*, 9.*]
dependency-versions: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
exclude:
- laravel: 8.*
php: 7.2
- php: 7.3
laravel: 9.*
- php: 7.4
laravel: 9.*
- php: 8.0
laravel: 7.*
- php: 8.1
laravel: 7.*


name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} / ${{ matrix.dependency-versions }}

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
"authors": [
{
"name": "Farhan Israq",
"email": "farhanshares@outlook.com",
"email": "farhan.israq.bd@gmail.com",
"homepage": "https://farhanshares.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^7.3",
"illuminate/support": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/validation": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/database": "^7.0|^8.0|^9.0",
"illuminate/validation": "^7.0|^8.0|^9.0",
"intervention/image": "^2.5"
},
"require-dev": {
"laravel/framework": "^7.0|^8.0",
"orchestra/testbench": "^5.0|^6.0",
"laravel/framework": "^7.0|^8.0|^9.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"mockery/mockery": "^1.2.3",
"laravel/legacy-factories": "^1.0.4"
"laravel/legacy-factories": "^1.3.9"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f706449

Please sign in to comment.