From c0a26f50ac9ec49fd64ec2ccdb74370ea4235500 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 29 May 2013 08:59:05 -0500 Subject: [PATCH 1/3] Fix unit test example. --- app/tests/ExampleTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/tests/ExampleTest.php b/app/tests/ExampleTest.php index 7bebb2ed..ead53e07 100644 --- a/app/tests/ExampleTest.php +++ b/app/tests/ExampleTest.php @@ -12,8 +12,6 @@ class ExampleTest extends TestCase { $crawler = $this->client->request('GET', '/'); $this->assertTrue($this->client->getResponse()->isOk()); - - $this->assertCount(1, $crawler->filter('h1:contains("Hello World!")')); } } \ No newline at end of file From e8fa5f02b723c91e0cf4e8ffd02829c37fd8d338 Mon Sep 17 00:00:00 2001 From: Jonathan Barronville Date: Wed, 29 May 2013 16:37:27 -0400 Subject: [PATCH 2/3] Small grammar fix. :eyes: . --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 630a0d06..295c10ec 100644 --- a/public/index.php +++ b/public/index.php @@ -26,7 +26,7 @@ require __DIR__.'/../bootstrap/autoload.php'; |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let's turn on the lights. -| This bootstrap the framework and gets it ready for use, then it +| This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight these users. | From d1520dc1b9dc475b149ea4f105d7ee4b0f717103 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 31 May 2013 08:29:03 -0500 Subject: [PATCH 3/3] Adding a few things to the composer.json file. --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 5afd955d..8639f3e0 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,7 @@ { + "name": "laravel/framework", + "description": "The Laravel Framework.", + "keywords": ["framework", "laravel"], "require": { "laravel/framework": "4.0.*" },