diff --git a/composer.json b/composer.json index 0e4084f17..f4990e9a6 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,9 @@ "keywords": ["framework", "laravel"], "license": "MIT", "require": { - "laravel/framework": "4.3.*", + "laravel/framework": "4.3.*" + }, + "require-dev": { "phpunit/phpunit": "~4.0" }, "autoload": { diff --git a/phpunit.xml b/phpunit.xml index c33042056..8745dfab7 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -12,7 +12,7 @@ > - ./app/tests/ + ./tests/ diff --git a/tests/TestCase.php b/tests/TestCase.php index d367fe53d..2d3429392 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -13,7 +13,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { $testEnvironment = 'testing'; - return require __DIR__.'/../../bootstrap/start.php'; + return require __DIR__.'/../bootstrap/start.php'; } }