Skip to content

Commit 820e7f1

Browse files
Laravel 10.x Compatibility (#470)
1 parent 52ae20a commit 820e7f1

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
os: [ubuntu-20.04]
14-
php: [8.2, 8.1, 8.0]
15-
laravel: [9.*]
14+
php: [8.2, 8.1]
15+
laravel: [10.*, 9.*]
1616
ffmpeg: [5.0, 4.4]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
19+
- laravel: 10.*
20+
testbench: 8.*
1921
- laravel: 9.*
2022
testbench: 7.*
2123

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.0|^8.1|^8.2",
24-
"illuminate/contracts": "^9.0",
23+
"php": "^8.1|^8.2",
24+
"illuminate/contracts": "^9.0|^10.0",
2525
"php-ffmpeg/php-ffmpeg": "^1.1",
26-
"ramsey/collection": "^1.2.2"
26+
"ramsey/collection": "^1.0|^2.0"
2727
},
2828
"require-dev": {
29-
"league/flysystem-memory": "^3.0",
30-
"mockery/mockery": "^1.3.3",
31-
"nesbot/carbon": "^2.63",
32-
"orchestra/testbench": "^7.0",
29+
"league/flysystem-memory": "^3.10",
30+
"mockery/mockery": "^1.4.4",
31+
"nesbot/carbon": "^2.66",
32+
"orchestra/testbench": "^7.0|^8.0",
3333
"phpunit/phpunit": "^9.5.10",
34-
"spatie/image": "^2.0",
34+
"spatie/image": "^2.2",
3535
"spatie/phpunit-snapshot-assertions": "^4.2"
3636
},
3737
"autoload": {
@@ -63,4 +63,4 @@
6363
}
6464
}
6565
}
66-
}
66+
}

0 commit comments

Comments
 (0)