Skip to content

Releases: caffeinated/modules

v2.2.3

19 Feb 23:34
Compare
Choose a tag to compare
Pull enabled status from cache and inject in manifest

v2.2.2

19 Feb 18:13
Compare
Choose a tag to compare
Clean up

v2.2.1

11 Feb 01:31
Compare
Choose a tag to compare
  • Fixed module:migrate with the --pretend option not being passed through to the migrator.

v2.2

03 Feb 20:37
Compare
Choose a tag to compare
  • Added support for Laravel 5.2
    • Laravel 5.1 is still supported
  • Cleaned up file structure
  • Renamed generator commands to the following:
    • module:makemake:module
    • module:make:controllermake:module:controller
    • module:make:migrationmake:module:migration
    • module:make:requestmake:module:request
  • Removed enabled manifest key - enabled and disabled modules are now listed within the storage/app directory.
    • module:cache was added to refresh the list of enabled and disabled modules

v2.1.11

11 Dec 19:34
Compare
Choose a tag to compare
Merge pull request #134 from hamrahpay/patch-6

Update controller.stub

v2.1.10

05 Dec 22:37
Compare
Choose a tag to compare
  • Added module:make:controller Artisan command. Thanks @hamrahpay!

v2.1.9

10 Nov 21:03
Compare
Choose a tag to compare
  • Fixed module seed command bug

v2.1.8

09 Nov 02:29
Compare
Choose a tag to compare
  • Added IdentifyModule middleware
  • Cleaned up trailing slashes from getNamespace() method.

v2.1.7

16 Jul 23:16
Compare
Choose a tag to compare

Added missing implementations and implemented the repository interface to prevent this from occurring in the future:

  • Module::where($key, $value)
  • Module::sortBy($key)
  • Module::sortByDesc($key)

v2.1.6

14 Jul 16:45
Compare
Choose a tag to compare

Added driver configuration, where two configuration options have been added:

  • driver - May be set to either local or custom
  • custom_driver - If driver is set to custom, you may specify a full namespace pointing to your own driver implementation here (be sure it extends Caffeinated\Modules\Repositories\Interfaces\ModuleRepositoryInterface)