Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Guzzle Changes #1485

Merged
merged 2 commits into from May 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mail.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Laravel provides a clean, simple API over the popular [SwiftMailer](https://swift

### Driver Prerequisites

The API based drivers such as Mailgun and Mandrill are often simpler and faster than SMTP servers. Al of the API drivers require that the Guzzle HTTP library be installed for your application. You may install Guzzle 5 to your project by adding the following line to your `composer.json` file:
The API based drivers such as Mailgun and Mandrill are often simpler and faster than SMTP servers. Al of the API drivers require that the Guzzle HTTP library be installed for your application. You may install Guzzle to your project by adding the following line to your `composer.json` file:

"guzzlehttp/guzzle": "~5.0"
"guzzlehttp/guzzle": "~5.3|~6.0"

#### Mailgun Driver

Expand Down
4 changes: 2 additions & 2 deletions scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ Using the `thenPing` method, the scheduler can automatically ping a given URL wh
->daily()
->thenPing($url);

Using the `thenPing($url)` feature requires the Guzzle HTTP library. You can add Guzzle 5 to your project by adding the following line to your `composer.json` file:
Using the `thenPing($url)` feature requires the Guzzle HTTP library. You can add Guzzle to your project by adding the following line to your `composer.json` file:

"guzzlehttp/guzzle": "~5.0"
"guzzlehttp/guzzle": "~5.3|~6.0"