Skip to content

Commit 0620bcc

Browse files
committed
fix: php8 Compatability
1 parent 5153869 commit 0620bcc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=7.1",
19-
"illuminate/support": "5.8|^6.0|^7.0|^8.0",
20-
"ext-openssl": "*"
18+
"php": "^7.1|^8.0",
19+
"illuminate/support": "5.8|^6.0|^7.0|^8.0",
20+
"ext-openssl": "*"
2121
},
2222
"require-dev": {
2323
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
24-
"phpunit/phpunit": "^8.0|^9.0"
24+
"phpunit/phpunit": "^8.0|^9.0|^10.0"
2525
},
2626
"autoload": {
2727
"psr-4": {
@@ -43,10 +43,10 @@
4343
"laravel": {
4444
"providers": [
4545
"CustomD\\EloquentAsyncKeys\\ServiceProvider"
46-
],
47-
"aliases": {
48-
"EloquentAsyncKeys": "CustomD\\EloquentAsyncKeys\\Facades\\EloquentAsyncKeys"
49-
}
46+
],
47+
"aliases": {
48+
"EloquentAsyncKeys": "CustomD\\EloquentAsyncKeys\\Facades\\EloquentAsyncKeys"
49+
}
5050
}
5151
},
5252
"config": {

0 commit comments

Comments
 (0)