Skip to content

Commit

Permalink
feat(core): Support Laravel 11 (#31)
Browse files Browse the repository at this point in the history
* Update composer.json

* Update unit-test.yaml

* Delete .github/workflows/lint-pr.yaml
  • Loading branch information
salkhwlani authored Jul 19, 2024
1 parent c4133ff commit fc02e56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 69 deletions.
65 changes: 0 additions & 65 deletions .github/workflows/lint-pr.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
php-version: ['8.1', '8.2']
php-version: ['8.1', '8.2', '8.3']

services:
redis:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"php": "^8.1|^8.3",
"league/oauth2-client": "^2.0",
"illuminate/support": "^9.0|^10.0"
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/framework": ">=8.0",
"laravel/framework": "^9.0|^10.0|^11.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.0|^9.0",
"squizlabs/php_codesniffer": "^2.0 || ^3.0"
Expand Down

0 comments on commit fc02e56

Please sign in to comment.