From 1c0920080ec2869cb0d4ea56ff4d819ab1b82bf4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 7 Jun 2013 08:58:40 -0500 Subject: [PATCH 1/3] Update readme.md --- readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a5f21749..0f34eb2a 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,7 @@ ## Laravel PHP Framework +[![Latest Stable Version](https://poser.pugx.org/laravel/framework/version.png)](https://packagist.org/packages/laravel/framework) [![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.png)](https://packagist.org/packages/laravel/framework) + Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching. Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality. Happy developers make the best code. To this end, we've attempted to combine the very best of what we have seen in other web frameworks, including frameworks implemented in other languages, such as Ruby on Rails, ASP.NET MVC, and Sinatra. @@ -16,4 +18,4 @@ ### Contributing To Laravel ### License -The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT) \ No newline at end of file +The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT) From 71a5ad62820fcf6ed73f22f4b83b6bd223ded7ed Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 7 Jun 2013 08:59:40 -0500 Subject: [PATCH 2/3] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0f34eb2a..235f900c 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ ## Laravel PHP Framework -[![Latest Stable Version](https://poser.pugx.org/laravel/framework/version.png)](https://packagist.org/packages/laravel/framework) [![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.png)](https://packagist.org/packages/laravel/framework) +[![Latest Stable Version](https://poser.pugx.org/laravel/framework/version.png)](https://packagist.org/packages/laravel/framework) [![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.png)](https://packagist.org/packages/laravel/framework) [![Build Status](https://travis-ci.org/laravel/framework.png)](https://travis-ci.org/laravel/framework) Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching. From e526c088005409a360bd844d0382a26b04c2f2cf Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 8 Jun 2013 13:14:10 -0500 Subject: [PATCH 3/3] Added "pretend" option to mail config. --- app/config/mail.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/app/config/mail.php b/app/config/mail.php index eb9e6406..a7151a06 100644 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -108,4 +108,17 @@ 'sendmail' => '/usr/sbin/sendmail -bs', -); + /* + |-------------------------------------------------------------------------- + | Mail "Pretend" + |-------------------------------------------------------------------------- + | + | When this option is enabled, e-mail will not actually be sent over the + | web and will instead be written to your application's logs files so + | you may inspect the message. This is great for local development. + | + */ + + 'pretend' => false, + +); \ No newline at end of file