Plugin Shell

    Via the task you are able to load plugins in yourconfig/bootstrap.php. You can do this by running:

      This will add the following to your src/Application.php:

      1. bin/cake plugin load --cli MyPlugin

      New in version 3.4.0: As of 3.4.0 the option is supported

      You can unload a plugin by specifying its name:

      CakePHP by default serves plugins assets using the middleware.While this is a good convenience, it is recommended to symlink / copythe plugin assets under app’s webroot so that they can be directly served by theweb server without invoking PHP. You can do this by running:

      1. bin/cake plugin assets symlink

      Running the above command will symlink all plugins assets under app’s webroot.On Windows, which doesn’t support symlinks, the assets will be copied inrespective folders instead of being symlinked.