From ca39b34b8c09192089772e48f8d4bd23ea0a756a Mon Sep 17 00:00:00 2001 From: Gil Rutkowski Date: Sat, 30 Nov 2013 11:36:05 -0600 Subject: [PATCH] Automatically run Sentry Migrations and DB migrations after composer install. --- composer.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/composer.json b/composer.json index 0150f72ce7..3147feef1d 100755 --- a/composer.json +++ b/composer.json @@ -20,6 +20,10 @@ ] }, "scripts": { + "post-install-cmd": [ + "php artisan migrate --package=cartalyst/sentry" + "php artisan migrate" + ] "pre-update-cmd": [ "php artisan clear-compiled" ],