Skip to content

Commit

Permalink
add laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink committed Apr 12, 2024
1 parent f518b3b commit f990299
Show file tree
Hide file tree
Showing 5 changed files with 2,171 additions and 1,699 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:

runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
laravel: [^10, ^11]
dependency-version: [prefer-lowest, prefer-stable]

steps:
- uses: actions/checkout@v3

Expand Down
33 changes: 12 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,22 @@

"test": "vendor/bin/testbench package:test --bail --retry"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/media-code/workspace-core",
"options": {
"symlink": false
}
}
],
"require": {
"php": "^8.1.0",
"illuminate/support": "^10.23",
"gedachtegoed/workspace-core": "^0.0.1"
"php": "^8.1|^8.2",
"illuminate/support": "^10.23|^11",
"gedachtegoed/workspace-core": "^0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.30",
"laravel/pint": "^1.13",
"nunomaduro/larastan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.53",
"laravel/pint": "^1.15",
"larastan/larastan": "^2.9",
"squizlabs/php_codesniffer": "^3.7",
"tightenco/duster": "^2.4",
"tightenco/tlint": "^9.1",
"orchestra/testbench": "^8.12",
"pestphp/pest": "^2.20",
"symfony/thanks": "^1.2",
"timacdonald/callable-fake": "^1.6"
"tightenco/duster": "^2.7",
"tightenco/tlint": "^9.3",
"orchestra/testbench": "^9",
"pestphp/pest": "^2.34",
"symfony/thanks": "^1.3",
"timacdonald/callable-fake": "^1.7"
},
"config": {
"allow-plugins": {
Expand Down
Loading

0 comments on commit f990299

Please sign in to comment.