readme and comment updates

This commit is contained in:
Joey Kimsey
2025-02-02 18:22:15 -05:00
parent 1093d127bf
commit 802581b1d2
5 changed files with 8 additions and 8 deletions

View File

@ -5,10 +5,12 @@ Hermes is a small package to handle redirects, routing, and autoloading. This li
## Installation
To install simply use the composer command:
To install, simply use the composer command:
`php composer.phar require thetempusproject/hermes`
`composer require thetempusproject/hermes`
## Usage
Typical usage would be through including the package via composer.
@ -45,9 +47,7 @@ if ( ! defined( 'HERMES_AUTOLOADED' ) ) {
}
}
if ( ! App::$isAdmin ) {
return Redirect::home();
}
Redirect::home();
```