Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maymeow/cakephp-bootstrap
🌈 Bootstrap plugin and bake template for CakePHP
https://github.com/maymeow/cakephp-bootstrap
bootstrap4 cakephp-plugin cakephp3 fontawesome5 hacktoberfest html5 templates
Last synced: 26 days ago
JSON representation
🌈 Bootstrap plugin and bake template for CakePHP
- Host: GitHub
- URL: https://github.com/maymeow/cakephp-bootstrap
- Owner: MayMeow
- Created: 2019-04-09T20:04:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:33:35.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T01:59:37.074Z (6 months ago)
- Topics: bootstrap4, cakephp-plugin, cakephp3, fontawesome5, hacktoberfest, html5, templates
- Language: HTML
- Homepage:
- Size: 3.17 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bootstrap plugin for CakePHP
## Installation
You can install this plugin into your CakePHP application using [composer](https://getcomposer.org).
The recommended way to install composer packages is:
```
composer require maymeow/cake-bootstrap
```## Configuration
Copy configuration file
```shell
cp vendor/maymeow/cake-bootstrap/config/cake_bootstrap.php config/cake_bootstrap.php
```and load it in your bootstrap config file
```php
Configure::load('cake_bootstrap', 'default', false);
```Load helpers in you `AppView`
```php
$this->loadHelper('Form', [
'templates' => 'CakeBootstrap.bootstrap_form'
]);
$this->loadHelper('CakeBootstrap.Bootstrap');
```## Using bake templates
Run from command line
```shell
bin/cake bake template --theme CakeBootstrap
```