From e47cef7f815f280d00ac5d8d837a9e83ffddfdd1 Mon Sep 17 00:00:00 2001 From: Jakub Gawron Date: Wed, 20 Nov 2019 15:48:03 +0000 Subject: [PATCH 1/3] Allow to use laravel 6 support package --- composer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3025583..b0fee40 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,6 @@ "laravel", "title", "page" - ], "authors": [ { @@ -17,7 +16,7 @@ "license": "MIT", "require": { "php": ">=5.4.0", - "illuminate/support": "~5.0" + "illuminate/support": "^5.0|^6.0" }, "require-dev": { "mockery/mockery": "~0.9.", @@ -27,6 +26,5 @@ "psr-4": { "Radiula\\Title\\": "src/" } - }, - "minimum-stability": "stable" + } } From c670cefa86551c046f1dcc4632009ad2641ab44b Mon Sep 17 00:00:00 2001 From: Jakub Gawron Date: Wed, 20 Nov 2019 16:11:10 +0000 Subject: [PATCH 2/3] Upgrade minimum php version to 5.6 --- .travis.yml | 7 ++++--- composer.json | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e2b6e5e..070d6c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ language: php php: - - 5.4 - - 5.5 - 5.6 + - 7.0 + - 7.1 + - 7.2 - hhvm before_script: @@ -15,4 +16,4 @@ script: matrix: allow_failures: - - php: hhvm \ No newline at end of file + - php: hhvm diff --git a/composer.json b/composer.json index b0fee40..28b9bf3 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ ], "license": "MIT", "require": { - "php": ">=5.4.0", + "php": ">=5.6.0", "illuminate/support": "^5.0|^6.0" }, "require-dev": { From a5fd6f5a415ea6329f33a4c00032308fb085c334 Mon Sep 17 00:00:00 2001 From: Jakub Gawron Date: Wed, 20 Nov 2019 16:15:25 +0000 Subject: [PATCH 3/3] Use the phpunit version required with composer --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 070d6c4..18a6ccd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,10 @@ php: - hhvm before_script: - - composer self-update - - composer install --prefer-source --no-interaction --dev + - composer install --prefer-source --no-interaction script: - - phpunit --coverage-text + - vendor/bin/phpunit --coverage-text matrix: allow_failures: