File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,18 @@ The package has no dependencies on other packages.
2222
2323## Quick Start
2424
25- Then add the following to alias the most used classes in your PHP file:
25+ Add the following to alias the most used classes in your PHP file:
2626
2727``` php
2828use MintyPHP\Form\Elements as E;
2929use MintyPHP\Form\Validator\Validators as V;
3030```
3131
32- Create a simple login form using:
32+ Now ensure all classes are (auto)loaded:
33+
34+ require_once 'vendor/autoload.php';
35+
36+ And create a simple login form using:
3337
3438``` php
3539$form = E::form([
@@ -199,4 +203,4 @@ Renders as:
199203
200204![ example.png] ( example.png )
201205
202- Interested? Read the rest of the [ documentation] ( docs/overview.md ) .
206+ Interested? Read the rest of the [ documentation] ( docs/overview.md ) .
You can’t perform that action at this time.
0 commit comments