Skip to content

Commit 287da8b

Browse files
Allow Laravel 8.x (#274)
* Allow Laravel 8.x * Add Laravel 8.x to github workflow * Bump Orchestral * Add missing dev dependency
1 parent 4adcdab commit 287da8b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
php: [7.4]
17-
laravel: [^7.0]
17+
laravel: [^7.0, ^8.0]
1818

1919
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2020

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@
2121
"php": "^7.4",
2222
"ext-json": "*",
2323
"doctrine/dbal": "^2.10",
24-
"illuminate/support": "^7.0",
25-
"laravel/ui": "^2.0",
24+
"illuminate/support": "^7.0|^8.0",
25+
"laravel/ui": "^2.0|^3.0",
2626
"spatie/once": "^2.2"
2727
},
2828
"require-dev": {
29+
"laravel/legacy-factories": "^1.0.4",
2930
"mockery/mockery": "^1.3",
30-
"orchestra/testbench": "^4.0|^5.0",
31-
"phpunit/phpunit": "^8.0"
31+
"orchestra/testbench": "^4.0|^5.0|^6.0",
32+
"phpunit/phpunit": "^8.0|^9.0"
3233
},
3334
"autoload": {
3435
"psr-4": {

0 commit comments

Comments
 (0)