We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e809b commit 950221cCopy full SHA for 950221c
README.md
@@ -12,20 +12,18 @@ If you want the latest **Bootstrap 3** version of the plugin:
12
```
13
composer require holt59/cakephp3-bootstrap-helpers:dev-master
14
15
-
16
-If you are updating from `holt59/cakephp3-bootstrap3-helpers`, do not forget to change the the following:
17
18
```php
19
// in config/bootstrap.php
20
-Plugin::load('Bootstrap') ; // instead of Plugin::load('Bootstrap3') ;
+Plugin::load('Bootstrap') ;
21
22
23
24
// in your AppController
25
public $helpers = [
26
'Form' => [
27
- 'className' => 'Bootstrap.BootstrapForm' // instead of 'Bootstrap3.BootstrapForm'
28
- ]
+ 'className' => 'Bootstrap.BootstrapForm'
+ ],
+ /* ... */
29
] ;
30
31
---
0 commit comments