From 5d5f50e5f883eee6a3d924357ec1b08c6deac554 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Thu, 15 Nov 2018 15:05:53 +0100 Subject: [PATCH] Drop support for PHP 5.4 --- .travis.yml | 1 - README.md | 6 +++++- composer.json | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5bb3da90e..a7fba4a18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ sudo: false language: php php: - - 5.4 - 5.5 - 5.6 - 7.0 diff --git a/README.md b/README.md index 8dca764d7..3b3e00ccf 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can sign up for a Stripe account at https://stripe.com. ## Requirements -PHP 5.4.0 and later. +PHP 5.5.0 and later. ## Composer @@ -60,6 +60,10 @@ Please see https://stripe.com/docs/api for up-to-date documentation. ## Legacy Version Support +### PHP 5.4 + +If you are using PHP 5.4, you can download v6.21.1 ([zip](https://github.com/stripe/stripe-php/archive/v6.21.1.zip), [tar.gz](https://github.com/stripe/stripe-php/archive/v5.9.2.tar.gz)) from our [releases page](https://github.com/stripe/stripe-php/releases). This version will continue to work with new versions of the Stripe API for all common uses. + ### PHP 5.3 If you are using PHP 5.3, you can download v5.9.2 ([zip](https://github.com/stripe/stripe-php/archive/v5.9.2.zip), [tar.gz](https://github.com/stripe/stripe-php/archive/v5.9.2.tar.gz)) from our [releases page](https://github.com/stripe/stripe-php/releases). This version will continue to work with new versions of the Stripe API for all common uses. diff --git a/composer.json b/composer.json index 47a285da4..b8b21a51b 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": ">=5.4.0", + "php": ">=5.5.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*"