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 528e4d8 commit a2d7f9dCopy full SHA for a2d7f9d
README.md
@@ -32,14 +32,17 @@ In your terminal execute: ``composer require szenis/routing``
32
<b>Step 3 - create index.php</b><br/>
33
Create the file index.php in the root of your project
34
35
-<b>Step 4 - require autoload.php</b><br/>
36
-Require vendor/autoload.php in your index.php
+<b>Step 4 - require autoload.php and use the Router</b><br/>
37
38
-<b>Step 5 - use Router</b><br/>
39
Add
40
```php
+<?php
+
41
+require './vendor/autoload.php';
42
43
use Szenis\Router;
44
use Szenis\RouteResolver;
45
46
```
47
to your index.php
48
0 commit comments