jdmaymeow / cake-shrink
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v1.0) of this package.
Code Advent CakeShrink plugin for CakePHP
Package info
github.com/jdmaymeow/cake-shrink
Type:cakephp-plugin
pkg:composer/jdmaymeow/cake-shrink
v1.0
2016-12-09 14:15 UTC
Requires
- php: >=5.5.9
- cakephp/cakephp: >=3.3.2 <4.0.0
Requires (Dev)
This package is not auto-updated.
Last update: 2021-11-11 17:13:35 UTC
README
This is part of Code Advent 2016
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require jdmaymeow/cake-shrink
Require jdmaymeow/cake-advent updated cakephp skeleton. For those who using standard cakephp skeleton update bootstrap.php with following lines
/** * Code Advent configuraiton file */ try { Configure::config('codeadvent', new JsonConfig()); Configure::load('codeadvent', 'codeadvent', false); } catch (\Exception $e) { exit($e->getMessage() . "\n"); }
and create config/codeadvent.json file with
{
"CakeShrink": {
"url": "https://<your url>/"
}
}