From 7d9951d3bd31c01a80a8efc61918fe15cdc294ba Mon Sep 17 00:00:00 2001 From: Davis L P Peixoto Date: Tue, 12 Aug 2014 12:49:22 -0300 Subject: [PATCH] Laravel 4.2 requires PHP 5.4 and above. Updating composer.json and travis with that --- .travis.yml | 3 +-- composer.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0a1c1cb..1eca4a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.3 - 5.4 - 5.5 @@ -9,4 +8,4 @@ before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev -script: phpunit \ No newline at end of file +script: phpunit diff --git a/composer.json b/composer.json index 0ebd74b..0af8754 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": ">=5.3.0", + "php": ">=5.4.0", "illuminate/support": "4.*", "davispeixoto/force-dot-com-toolkit-for-php": "1.0.3" },