Skip to content

Commit

Permalink
Add Laravel 9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
krlove committed Feb 10, 2022
1 parent 2d03a9b commit 788a73b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
2022-02-10, v1.3.8
-----------------
* Add Laravel 9 support

2021-03-07, v1.3.7
-----------------
* Add Doctrine DBAL 3.0 support
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "krlove/eloquent-model-generator",
"description": "Eloquent Model Generator",
"version": "1.3.7",
"version": "1.3.8",
"license": "MIT",
"autoload": {
"psr-4": {
"Krlove\\EloquentModelGenerator\\": "src/"
}
},
"require": {
"illuminate/database": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^5.0 || ^6.0|| ^7.0 || ^8.0",
"illuminate/config": "^5.0 || ^6.0|| ^7.0 || ^8.0",
"illuminate/console": "^5.0 || ^6.0|| ^7.0 || ^8.0",
"illuminate/database": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^5.0 || ^6.0|| ^7.0 || ^8.0 || ^9.0",
"illuminate/config": "^5.0 || ^6.0|| ^7.0 || ^8.0 || ^9.0",
"illuminate/console": "^5.0 || ^6.0|| ^7.0 || ^8.0 || ^9.0",
"doctrine/dbal": "^2.5 || ^3.0",
"krlove/code-generator": "^1.0"
},
Expand Down

0 comments on commit 788a73b

Please sign in to comment.