Skip to content

Releases: laracasts/Laravel-5-Generators-Extended

v2.0.2

22 Mar 14:25
94d454e
Compare
Choose a tag to compare
  • Adds Laravel 10 support

v2.0.1

09 Feb 14:12
5527f50
Compare
Choose a tag to compare
  • Adds Laravel 9 support

2.0.0

10 Sep 13:55
0b8b3d3
Compare
Choose a tag to compare

Breaking Changes

  • by default no model is created, you have to specify --model=true to create one - 67dc4dc;
  • dropped support for Laravel 5.x - 5e8bfbb; don't worry, we've added support for Laravel 8 to the v1 branch before releasing 2.0.0;
  • removed the make:seeder command since that was only needed in Laravel 5.0; all Laravel versions since then have provided a native make:seed that does the same thing;

Fixes

  • #43 - prevented situation where two migrations were generated, one by this package and one by Laravel's make:model command; fixes bug #40 ;

Improvements

  • #165 Use bigInteger by default on pivot tables - fixes #144; here's why;
  • write migration name in command prompt after creation #126;
  • ability to specify --path=smth to change where migrations are generated #90 ;
  • #158 - dump autoload after creating Model ;

To Do

See the v2 board

1.2.0

10 Sep 11:49
555f1b0
Compare
Choose a tag to compare
  • added support for Laravel 8 (#190)

1.1.9

29 Mar 05:07
6d628e0
Compare
Choose a tag to compare
  • hotfix - replaced a few more leftover string helpers with Str;

1.1.8

10 Mar 07:18
Compare
Choose a tag to compare
  • hot fix - removed a few more leftover string and array helpers;

1.1.7

03 Mar 10:07
134fd33
Compare
Choose a tag to compare
  • added Laravel 7 support
  • removed laravel/helpers dependency (replaced helpers with their Str::smth() and Arr::smth() equivalents);

1.1.6

04 Sep 04:55
a71d2b7
Compare
Choose a tag to compare

Added Laravel 6 support

1.1.5

17 Aug 08:54
9c60662
Compare
Choose a tag to compare

Maintenance release - allows developers to install it normally instead of composer require laracasts/generators:master --dev

Laravel 5.5 Compatibility

15 Nov 06:27
bf6aa82
Compare
Choose a tag to compare
  • added package auto-discovery
  • added support for Laravel 5.5 (backwards-compatible)