rajath
1
Hi,
I want to change the src application folder(Controller,Factory,Model,Event,…) to a different folder
\module\Application\src\Application from \module\Application\src\
What are the change need to make for the same.
Tried moving the folder and updating path changes in Module.php
Thanks
Do not forget the autoloading that is done by Composer:
1 Like
rajath
3
Thanks @froschdesign
Its worked after doing composer
dump-autoload to refresh autoload files after modifying composer json and module file
rajath
4
@froschdesign
Can we change the location of Module.php file
Current path is → module\Application\src\Application
Want to change to → module\Application\
Its breaking while trying to load module - $serviceManager->get(‘ModuleManager’)
Current auto load path
“Application\”: “module/Application/src/Application/”,
Thanks
This is outside of the directory which is covered by the autoloading.
Therefore you must extend the autoloading.
Short example:
{
"autoload": {
"classmap": [
"module/Application/Module.php"
]
}
}