GrafiteInc / CMS

Decoupled CMS for any Laravel app, gain control of: pages, blogs, galleries, events, images, custom modules and more.
https://cms.grafite.ca
MIT License
495 stars 104 forks source link

Config cms.module-directory is case sensitive #162

Closed yapsr closed 6 years ago

yapsr commented 6 years ago

Describe the bug With cms modules and running composer dump, the module providers inside that directory are not found.

To Reproduce Steps to reproduce the behavior:

  1. php artisan make:crud name on case sensitive platform, like Linux.
  2. composer dump

Solution

  1. Rename the directory cms/modules to cms/Modules
  2. Set cms.module-directory in config/cms.php to 'cms/Modules'
mlantz commented 6 years ago

Will fix and push in the next couple days - lots of updates are on their way!

mlantz commented 6 years ago

Corrected in the latest release

yapsr commented 6 years ago

@mlantz Great!