Skip to content

Commit d0d2669

Browse files
authored
Update README.md
1 parent a4a346d commit d0d2669

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff 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
2828
use MintyPHP\Form\Elements as E;
2929
use 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).

0 commit comments

Comments
 (0)