Skip to content

Commit

Permalink
Merge pull request #6 from archtechx/l10-support
Browse files Browse the repository at this point in the history
Add L10 support
  • Loading branch information
stancl authored Feb 15, 2023
2 parents 46ba3c0 + 45ba8a6 commit fbaa5dc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [8, 9]
laravel: [8, 9, 10]

steps:
- uses: actions/checkout@v2
Expand Down
23 changes: 14 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
}
},
"require": {
"php": "^8.0",
"illuminate/support": "^8.24|^9.0",
"archtechx/laravel-seo": "^0.3.2",
"php": "^8.1",
"illuminate/support": "^8.24|^9.0|^10.0",
"archtechx/laravel-seo": "^0.6",
"ryangjchandler/orbit": "*",
"illuminate/routing": "^8.53|^9.0",
"illuminate/database": "^8.53|^9.0"
"illuminate/routing": "^8.53|^9.0|^10.0",
"illuminate/database": "^8.53|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.9|^7.0",
"pestphp/pest": "^1.2",
"pestphp/pest-plugin-laravel": "^1.0"
"orchestra/testbench": "^6.9|^7.0|^8.0",
"pestphp/pest": "^1.2|^2.0",
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
},
"extra": {
"laravel": {
Expand All @@ -41,5 +41,10 @@
}
},
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}

0 comments on commit fbaa5dc

Please sign in to comment.