diff --git a/.travis.yml b/.travis.yml index f34b474..9eccb64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,6 @@ language: php jobs: - allow_failures: - - php: 8.2 include: - - php: 7.1 - dist: xenial - - php: 7.2 - dist: xenial - - php: 7.3 - dist: xenial - php: 7.4 dist: focal - php: 8.0 @@ -16,6 +8,10 @@ jobs: - php: 8.1 dist: focal - php: 8.2 - dist: jammy -install: composer install + dist: focal +install: + - sudo apt-get update + - sudo apt-get install libonig5 + - composer install + - php -v script: ./vendor/bin/phpunit tests diff --git a/README.md b/README.md index 123bbea..51ea0ee 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ plus its curl and json extensions. See below the `require` section of project's ```json { "require": { - "php": ">=7.1", + "php": ">=7.4", "ext-curl": "*", "ext-json": "*" } diff --git a/composer.json b/composer.json index a845379..4d79b2a 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "keywords": ["pushover", "pushover.net", "wrapper", "client"], "homepage": "https://github.com/slunak/pushover-php", "require": { - "php": ">=7.1", + "php": ">=7.4", "ext-curl": "*", "ext-json": "*" },