You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to have our modules in our vendor folder to publish new changes to users with little to no interruption to their ppi application.
As a result, packagist package "ppi/user-module" will be installed to ./vendor/ppi/user-module/
All the code we currently have in the skeleton app will be moved to the vendor folder, and the files will remain in the skeletonapp, but they will extend the vendor class.
module 'PPIUserModule' will be in ./vendor/ppi/user-module/.
module 'UserModule' will be in ./modules/ppi/UserModule/
<?phpnamespaceUserModule\Controller;
usePPIUserModule\Controller\IndexasBaseController;
class Index extends BaseController {}
The class body will be entirely empty, and the app developer can override the 'showAction' or 'deleteAction' as necessary.
The text was updated successfully, but these errors were encountered:
We need to have our modules in our vendor folder to publish new changes to users with little to no interruption to their ppi application.
As a result, packagist package "ppi/user-module" will be installed to ./vendor/ppi/user-module/
All the code we currently have in the skeleton app will be moved to the vendor folder, and the files will remain in the skeletonapp, but they will
extend
the vendor class.module 'PPIUserModule' will be in
./vendor/ppi/user-module/
.module 'UserModule' will be in
./modules/ppi/UserModule/
The class body will be entirely empty, and the app developer can override the 'showAction' or 'deleteAction' as necessary.
The text was updated successfully, but these errors were encountered: