From 4b35eea3a7cc55b8a058d735e2232bfb824d4712 Mon Sep 17 00:00:00 2001 From: Brian Kiewel Date: Fri, 7 Jun 2013 16:58:58 -0700 Subject: [PATCH 1/4] changed spaces to tabs --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index eda916fc..18d39933 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { - "name": "laravel/laravel", - "description": "The Laravel Framework.", - "keywords": ["framework", "laravel"], + "name": "laravel/laravel", + "description": "The Laravel Framework.", + "keywords": ["framework", "laravel"], "require": { "laravel/framework": "4.0.*" }, From 51a013fbbf4d834216909d532d40dc4067a6810f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 9 Jun 2013 20:07:34 -0500 Subject: [PATCH 2/4] Fix closing div tag. --- app/views/hello.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/hello.php b/app/views/hello.php index 175f47a9..e85023bc 100644 --- a/app/views/hello.php +++ b/app/views/hello.php @@ -47,6 +47,6 @@

You have arrived.

-
+
From b7c147c77a44133e36893fbe5c88051ba392b113 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 9 Jun 2013 20:22:08 -0500 Subject: [PATCH 3/4] Update encrypter comment. --- app/config/app.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/app.php b/app/config/app.php index 77c9cfb4..d63f31c7 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -60,8 +60,8 @@ return array( |-------------------------------------------------------------------------- | | This key is used by the Illuminate encrypter service and should be set - | to a random, long string, otherwise these encrypted values will not - | be safe. Make sure to change it before deploying any application! + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! | */ From f583a9d23fcc2175e2a2245e2417fc3baedf9c93 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 9 Jun 2013 20:24:38 -0500 Subject: [PATCH 4/4] Added post create-project command to generate key. --- composer.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 18d39933..0162a474 100644 --- a/composer.json +++ b/composer.json @@ -16,14 +16,17 @@ ] }, "scripts": { - "pre-update-cmd": [ - "php artisan clear-compiled" - ], "post-install-cmd": [ "php artisan optimize" ], + "pre-update-cmd": [ + "php artisan clear-compiled" + ], "post-update-cmd": [ "php artisan optimize" + ], + "post-create-project-cmd": [ + "php artisan key:generate" ] }, "config": {