Skip to content

Releases: nWidart/laravel-modules

4.0.0

30 Sep 10:04
d487d9b
Compare
Choose a tag to compare

Added

  • New way of handling routes by default using a RouteServiceProvider (instead of start.php)
  • Laravel 5.7 support

Changed

  • Allow class resolution on short name and abstract
  • module:seed accepts a --class option

3.3.1

13 Jul 15:37
a7ec8a5
Compare
Choose a tag to compare

Changed

  • Added the ability to set a sub-namespace to controllers module:make-controller Api\\TestController

3.3.0

21 Jun 17:40
6e27f17
Compare
Choose a tag to compare

Changed

  • module:update command has now the possibility to update all modules at once
  • Fixing commented code for Laravel Mix

3.2.1

16 Apr 18:48
5250efe
Compare
Choose a tag to compare
Preparing 3.2.0 release

3.2.0

16 Apr 17:35
50da4fe
Compare
Choose a tag to compare

Added

  • Added possibility to update all modules at once if any not specified (PR #523)

Changed

  • Mix: Fix css relative urls by changing the route folder (PR #521)
  • Mix: Prevents every build from deleting previous Mix config file (PR #521)

3.1.0

01 Apr 15:49
a4a6db1
Compare
Choose a tag to compare

Added

Changed

  • Allow symlinks in module path
  • Returns the parameter --class to the SeedCommand.
  • Generate folders recursively
  • Removing link that has become a 404
  • Fixed seed command exception typehint

Removed

  • Removed the optimize command on the module:make-migration command

3.0.1

16 Feb 14:47
f5574c8
Compare
Choose a tag to compare

Changed

  • Update publish commands to use the new API to get all enabled modules (PR #483 )

3.0.0

14 Feb 15:17
07b6f90
Compare
Choose a tag to compare

Added

  • Added support for laravel 5.6
  • Using phpunit 7

Changed

  • BC: Repository class: renamed enabled to allEnabled
  • BC: Repository class: renamed disabled to allDisabled
  • BC: Repository class: renamed active to enabled
  • BC: Repository class: renamed notActive to disabled

Removed

  • Dropped php 7.0 support
  • BC: Module class: Deprecated active() method, use enabled()
  • BC: Module class: Deprecated notActive() method, use disabled()
  • BC: Repository class: Deprecated addPath() method, use addLocation()
  • BC: Repository class: Deprecated get() method, use find()
  • BC: Repository class: Deprecated getUsed() method, use getUsedNow()

2.7.0

13 Jan 20:14
30c1475
Compare
Choose a tag to compare

Changed

  • Rename the before method to boot in the RouterServiceProvider stub file
  • Fixing caching issue if modules were loaded from a different directory
  • Fixing how modules are loaded from vendor directory (#423 #417)
  • Update to Mockery 1.0
  • use default file stubs only if the override does not exist
  • Fix non well formed numeric value in seed command

2.6.0

07 Nov 16:55
e757dcb
Compare
Choose a tag to compare

Added

  • Ability to customise the destination folder & namespace of a generated class
  • Added php artisan module:migrate-status command
  • Added config_path() helper for Lumen
  • Added views tag to view config in ServiceProvider
  • Added package auto discovery for laravel 5.5 in generated module composer.json

Changed

  • Adding the ability to correctly load modules from multiple locations, together
  • Custom seeder path now also used in the module:seed command
  • updated readme on how to install laravel-modules in Lumen