An example module for Craft CMS 3 that lets you enhance your websites with a custom site module.
This module requires Craft CMS 3.0.0-RC3 or later.
To install the plugin, follow these instructions.
-
Copy the
modules
folder into your project root directory -
Either copy the
app.php
into yourconfig/
directory, or copy & paste the*
settings in theapp.php
into your project'sapp.php
file -
Make sure you have the following in your project's
composer.json
:
"autoload": {
"psr-4": {
"modules\\sitemodule\\": "modules/sitemodule/src/"
}
},
- If you didn't have the above
autoload
settings in yourcomposer.json
you'll also need to do the following command from your project root:
composer dump-autoload
Read the Enhancing a Craft CMS 3 Website with a Custom Module article for details.
Some things to do, and ideas for potential features:
- Initial release
Brought to you by nystudio107