Cakephp Cookbook usually talks about loading Plugins with call to Plugin::load() to in order to have plugin class files available to application layer code. Understanbly Cakephp version => 3.0 is fully composer complaint and can leverage composer autoload functionality.Why then is it necessary to have special class loading mechanism for Cakephp plugins when the same thing can be achieved with a simple use keyword declaration ?
<?php
//in config/boostrap.php
Plugin::load('Migrations');
what is the difference between this two ?
// inside another controller
use path/to/plugin/files
enabling/loading.What will prevent unenabled plugin from being composer loaded ? - Cholthi Paul Ttiopic