Skip to content

Commit

Permalink
change install method order
Browse files Browse the repository at this point in the history
  • Loading branch information
Puskás Zsolt committed Apr 18, 2018
1 parent ffcdf8f commit ad09f34
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ Kohana 3.3 and Koseven compatible email module using SwiftMailer or PHPMailer.

## How to install

### Direct download method
1. Download to modules directory.
2. Fetch dependencies.
```
composer install
```
3. Include it in `APPPATH/bootstrap.php` modules list:
```php
Kohana::modules(array(
...
'email' => MODPATH.'email',
...
));
```

### Vendor module method
1. Add it in your projects composer.json.
```json
Expand All @@ -27,21 +42,6 @@ Kohana::modules(array(
));
```

### Direct download method
1. Download to modules directory.
2. Fetch dependencies.
```
composer install
```
3. Include it in `APPPATH/bootstrap.php` modules list:
```php
Kohana::modules(array(
...
'email' => MODPATH.'email',
...
));
```

## Usage
Send a message to a recipient
```php
Expand Down

0 comments on commit ad09f34

Please sign in to comment.