Releases: humanmade/altis-cms-installer
Releases · humanmade/altis-cms-installer
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.3
0.3.2
v0.3.1
- Bug: Fix variable name used to write
modules.php
file.
v0.3.0
This release brings in a fundamental change to how Altis modules are bootstrapped. They no longer need to register their load.php
files via composer's autoload
property or use the function_exists( 'add_action' )
guard.
This means we can avoid loading files that have side effects via composer's autoload.php
.
Modules should remove load.php
from being autoloaded and add the following to their composer.json
file:
{
"extra": {
"altis": {}
}
}
The Altis property can remain empty for the time being.