Closed justinyost closed 9 years ago
This should be operational, with the caveat that since you can't install the 3.0 version of this plugin via composer yet, you need to monkey with your consuming app's composer.json file.
To test manually in a base Cake 3.0 skeleton app:
myapp/plugins/ConfigRead/
.Edit myapp/composer.json
to include:
"autoload": {
"psr-4": {
"ConfigRead\\": "./plugins/ConfigRead/src"
}
},
"autoload-dev": {
"psr-4": {
"ConfigRead\\Test\\": "./plugins/ConfigRead/tests"
}
},
config/bootstrap.php
to include Plugin::load('ConfigRead');
Verified as basic feature set working in Cake3.
:warning: WIP :warning: