We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93480dc commit 2d46292Copy full SHA for 2d46292
1 file changed
docs/installation.md
@@ -16,15 +16,13 @@ composer require salines/cakephp-verification
16
17
## 2) Load the plugin
18
19
-```bash
20
-bin/cake plugin load Verification
21
-```
22
-
23
-This adds an entry to `config/plugins.php`. Alternatively, add it manually in
24
-`src/Application.php`:
+Add it manually in `src/Application.php`:
25
26
```php
27
-$this->addPlugin('CakeVerification');
+use CakeVerification\CakeVerificationPlugin;
+
+// in bootstrap():
+$this->addPlugin(CakeVerificationPlugin::class);
28
```
29
30
## 3) Publish config
0 commit comments