From be8882f1154188342c1ec3983e6b1be1c1a5c21b Mon Sep 17 00:00:00 2001 From: Tony Dew Date: Mon, 2 Jun 2014 00:12:58 -0700 Subject: [PATCH 1/2] Removed "app/models" from classmap Since app/models has been removed, this line was causing: [RuntimeException] Could not scan for classes inside "app/models" which does not appear to be a file nor a folder --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index ef9fe721..9462024a 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,6 @@ "classmap": [ "app/commands", "app/controllers", - "app/models", "app/database/migrations", "app/database/seeds", "app/tests/TestCase.php" From a4ecd32bdb23e025f2f349edd6b6f851739c39e0 Mon Sep 17 00:00:00 2001 From: Tony Dew Date: Mon, 2 Jun 2014 00:21:02 -0700 Subject: [PATCH 2/2] Added step to seed the database --- readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 9ab15c48..0e29607f 100644 --- a/readme.md +++ b/readme.md @@ -29,7 +29,13 @@ composer install php artisan migrate --package="cartalyst/sentry" ``` -##### 7. Publish the package to app folder(app/config/packages), so that you can manage throttling or other settings +##### 7. Run the database seeder + +``` +php artisan db:seed +``` + +##### 8. Publish the package to app folder(app/config/packages), so that you can manage throttling or other settings ``` php artisan config:publish cartalyst/sentry