Skip to content

Commit b7792f6

Browse files
committed
Add support for Laravel 10
1 parent 30e5e9d commit b7792f6

File tree

5 files changed

+1497
-1407
lines changed

5 files changed

+1497
-1407
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/.php_cs.cache
22
/vendor/
33
.idea
4+
/.phpunit.result.cache
5+
/.phpunit.cache/

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.2.10] - 2023-02-25
6+
### Changed
7+
- Add support for Laravel 10
8+
59
## [2.2.9] - 2022-02-11
610
### Changed
711
- Add support for Laravel 9

Diff for: composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
}
1111
],
1212
"require": {
13-
"illuminate/support": "5.*|6.*|7.*|8.*|9.*",
14-
"mnabialek/laravel-version": "^1.0.3",
13+
"illuminate/support": "5.*|6.*|7.*|8.*|9.*|10.*",
14+
"mnabialek/laravel-version": "^1.0.6",
1515
"nesbot/carbon": "~1.0 || ^2.0",
16-
"illuminate/filesystem": "5.*|6.*|7.*|8.*|9.*",
17-
"illuminate/container": "5.*|6.*|7.*|8.*|9.*"
16+
"illuminate/filesystem": "5.*|6.*|7.*|8.*|9.*|10.*",
17+
"illuminate/container": "5.*|6.*|7.*|8.*|9.*|10.*"
1818
},
1919
"require-dev": {
2020
"friendsofphp/php-cs-fixer": "^3.0",
21-
"phpunit/phpunit": "^9.0",
21+
"phpunit/phpunit": "^10.0",
2222
"mockery/mockery": "^1.0",
2323
"php-coveralls/php-coveralls": "^2.0",
24-
"laravel/framework": "9.*"
24+
"laravel/framework": "10.*"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)