Releases: caffeinated/modules
Releases · caffeinated/modules
v2.2.3
v2.2.2
v2.2.1
v2.2
- Added support for Laravel 5.2
- Laravel 5.1 is still supported
- Cleaned up file structure
- Renamed generator commands to the following:
module:make
→make:module
module:make:controller
→make:module:controller
module:make:migration
→make:module:migration
module:make:request
→make:module:request
- Removed
enabled
manifest key - enabled and disabled modules are now listed within thestorage/app
directory.module:cache
was added to refresh the list of enabled and disabled modules
v2.1.11
v2.1.10
- Added
module:make:controller
Artisan command. Thanks @hamrahpay!
v2.1.9
v2.1.8
v2.1.7
v2.1.6
Added driver configuration, where two configuration options have been added:
- driver - May be set to either
local
orcustom
- custom_driver - If driver is set to
custom
, you may specify a full namespace pointing to your own driver implementation here (be sure it extendsCaffeinated\Modules\Repositories\Interfaces\ModuleRepositoryInterface
)