Skip to content

Commit

Permalink
Drop support of PHP 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Jul 25, 2019
1 parent 3178452 commit d16959f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
@@ -1,8 +1,7 @@
language: php
php:
- 7.2
- 7.3
- 7.4snapshot
- "7.3"
- "7.4snapshot"

matrix:
fast_finish: true
Expand All @@ -27,13 +26,13 @@ jobs:
- stage: "Code Quality"
name: PHPCS
install: travis_retry composer install --prefer-dist
php: 7.3
php: "7.3"
script:
- ./vendor/bin/phpcs
- stage: "Code Quality"
name: Psalm
install: travis_retry composer install --prefer-dist
php: 7.3
php: "7.3"
script:
- ./vendor/bin/psalm --shepherd
- stage: test
Expand All @@ -53,7 +52,7 @@ jobs:
services:
- redis-server
install: travis_retry composer install --prefer-dist
php: 7.3
php: "7.3"
script:
- ./vendor/bin/infection --min-msi=90 --min-covered-msi=90

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -3,7 +3,7 @@
"description": "Prometheus instrumentation library",
"license": "Apache-2.0",
"require": {
"php": ">=7.2",
"php": ">=7.3",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
Expand Down

0 comments on commit d16959f

Please sign in to comment.