maymeow / cake-bootstrap
CakeBootstrap plugin for CakePHP
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Package info
github.com/MayMeow/cakephp-bootstrap
Language:HTML
Type:cakephp-plugin
pkg:composer/maymeow/cake-bootstrap
v1.1.1
2019-04-16 14:13 UTC
Requires
- cakephp/cakephp: ^3.5
Requires (Dev)
- phpunit/phpunit: ^5.7.14|^6.0
This package is auto-updated.
Last update: 2025-07-07 10:03:37 UTC
README
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require maymeow/cake-bootstrap
Configuration
Copy configuration file
cp vendor/maymeow/cake-bootstrap/config/cake_bootstrap.php config/cake_bootstrap.php
and load it in your bootstrap config file
Configure::load('cake_bootstrap', 'default', false);
Load helpers in you AppView
$this->loadHelper('Form', [ 'templates' => 'CakeBootstrap.bootstrap_form' ]); $this->loadHelper('CakeBootstrap.Bootstrap');
Using bake templates
Run from command line
bin/cake bake template <YourModel> --theme CakeBootstrap