Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 55ff29f

Browse files
authored
Merge pull request #543 from larowka/master
Support php 8.1 and laravel 10
2 parents 8e01730 + 9ec3c9c commit 55ff29f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Files
22
.DS_Store
33
phpunit.xml
4+
.phpunit.result.cache
45
composer.lock
56
.scannerwork
67

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.2|^8.0",
25-
"illuminate/console": "~5.4|~6.0|~7.0|~8.0|~9.0",
26-
"illuminate/contracts": "~5.4|~6.0|~7.0|~8.0|~9.0",
27-
"illuminate/http": "~5.4|~6.0|~7.0|~8.0|~9.0",
28-
"illuminate/support": "~5.4|~6.0|~7.0|~8.0|~9.0",
24+
"php": "^7.2|^8.0|^8.1",
25+
"illuminate/console": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0",
26+
"illuminate/contracts": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0",
27+
"illuminate/http": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0",
28+
"illuminate/support": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0",
2929
"predis/predis": "^1.1"
3030
},
3131
"require-dev": {
32-
"laravel/lumen-framework": "~5.4|~6.0|~7.0|~8.0|~9.0",
33-
"phpunit/phpunit": "^9",
34-
"phpunit/php-code-coverage": "^9",
32+
"laravel/lumen-framework": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0",
33+
"phpunit/phpunit": "^10",
34+
"phpunit/php-code-coverage": "^10",
3535
"php-coveralls/php-coveralls": "^2.1",
3636
"mockery/mockery": "~1.5",
3737
"codedungeon/phpunit-result-printer": "^0.31.0",

0 commit comments

Comments
 (0)