Skip to content

Releases: RonasIT/laravel-entity-generator

Laravel >=8 compatibility

22 Apr 10:20
2485e4b
Compare
Choose a tag to compare
Pre-release
Merge pull request #14 from RonasIT/dpankratov/legacy-factories-install

fix: move lagacy factories package to require instead of require-dev;

fix: circular relations check

18 Apr 05:20
47b0927
Compare
Choose a tag to compare
Pre-release
Merge pull request #11 from RonasIT/dpankratov/circular-relations-fix

Dpankratov/circular relations fix

fix: circular relations check

18 Apr 05:20
dd002b2
Compare
Choose a tag to compare
Pre-release
1.3.12

Merge pull request #12 from RonasIT/dpankratov/circular-relatons-majo…

Requirements update

13 Apr 09:18
dc04121
Compare
Choose a tag to compare
Requirements update Pre-release
Pre-release
  • removed jwt from the requirements list;
  • imcreased laravel-heleprs version requirements;

Laravel-helpers update

23 Nov 11:03
Compare
Choose a tag to compare
  • updated required Laravel-Helpers package version up to 2.0.0-beta;
  • updated stubs to use new Laravel-Helpers syntax;
  • small refactoring;

CRUD update

23 Nov 10:08
8211968
Compare
Choose a tag to compare
  • new options of the make:entity command available: --only-api and --only-entity. The only-entity will generate classes that allows to work with entity inside the application: migration, model, service, repository, factory and seeder. In order only-api option will generate classes that provided external access: routes, controller, requests and test cases.
  • new --methods option provide an ability to generate only required APIs methods and classes.
php artisan make:entity Document --methods=R

e.g. R value will generate only read actions (Get/Search routes, requests, methods of controller and test cases).

You can combine different methods to generate only required code

php artisan make:entity Document --methods=CD
php artisan make:entity Document --methods=DC

note that order of methods words is not important.

  • entity-generator configs now will be automatically updated according to the default package configs, you will be noticed about with the console message;
  • search request now has nullable rule in the query field;
  • updated readme;

1.3.9: Merge pull request #6 from RonasIT/dpankratov/version-update

02 Dec 06:09
a2de505
Compare
Choose a tag to compare
  • removed minime/annotations package from composer.json cause it already requires by Laravel-Helpers package

Compatibility update

02 Dec 05:43
5ed17b4
Compare
Choose a tag to compare
  • increased minime/annotations min version to make compatibility with the Laravel-Swagger package

Templates update

17 Sep 04:19
43591ef
Compare
Choose a tag to compare
Merge pull request #4 from RonasIT/dpankratov/version-update

Dpankratov/version update