Drop PHP5 (#518)

* drop PHP5

* Added branch alias
This commit is contained in:
Tobias Nyholm 2019-01-06 09:01:37 +01:00 committed by GitHub
parent 1bcce53387
commit 90eb1d6d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 9 deletions

View File

@ -7,11 +7,14 @@ cache:
- $HOME/.composer/cache/files - $HOME/.composer/cache/files
php: php:
- 5.5
- 5.6
- 7.0
- 7.1 - 7.1
- 7.2 - 7.2
- 7.3
branches:
except:
- /^analysis-.*$/
- /^patch-.*$/
env: env:
- TEST_COMMAND="composer test-all" - TEST_COMMAND="composer test-all"
@ -19,10 +22,8 @@ env:
matrix: matrix:
fast_finish: true fast_finish: true
include: include:
- php: 5.5 - php: 7.1
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" PREFER_COVERAGE=true env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" PREFER_COVERAGE=true
- php: hhvm
dist: trusty
install: install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
@ -33,6 +34,7 @@ before_script:
- if [[ "$PREFER_COVERAGE" = true ]] && [[ "$TRAVIS_PULL_REQUEST" = false ]]; then TEST_COMMAND="composer test-coverage" COVERAGE=true; fi - if [[ "$PREFER_COVERAGE" = true ]] && [[ "$TRAVIS_PULL_REQUEST" = false ]]; then TEST_COMMAND="composer test-coverage" COVERAGE=true; fi
script: script:
- composer validate --strict --no-check-lock
- echo $TEST_COMMAND - echo $TEST_COMMAND
- $TEST_COMMAND - $TEST_COMMAND

View File

@ -2,17 +2,17 @@
"name": "mailgun/mailgun-php", "name": "mailgun/mailgun-php",
"description": "The Mailgun SDK provides methods for all API functions.", "description": "The Mailgun SDK provides methods for all API functions.",
"require": { "require": {
"php": "^5.5 || ^7.0", "php": "^7.1",
"php-http/httplug": "^1.0 || ^2.0", "php-http/httplug": "^1.0 || ^2.0",
"php-http/multipart-stream-builder": "^1.0", "php-http/multipart-stream-builder": "^1.0",
"php-http/client-common": "^1.1", "php-http/client-common": "^1.9",
"php-http/discovery": "^1.0", "php-http/discovery": "^1.0",
"webmozart/assert": "^1.2" "webmozart/assert": "^1.2"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~4.8", "phpunit/phpunit": "~4.8",
"php-http/guzzle6-adapter": "^1.0", "php-http/guzzle6-adapter": "^1.0",
"guzzlehttp/psr7": "^1.4", "nyholm/psr7": "^1.0",
"nyholm/nsa": "^1.1" "nyholm/nsa": "^1.1"
}, },
"autoload": { "autoload": {
@ -41,5 +41,10 @@
"test-all": "vendor/bin/phpunit --testsuite all", "test-all": "vendor/bin/phpunit --testsuite all",
"test-integration": "vendor/bin/phpunit --testsuite integration", "test-integration": "vendor/bin/phpunit --testsuite integration",
"test-coverage": "vendor/bin/phpunit --testsuite all --coverage-text --coverage-clover=build/coverage.xml" "test-coverage": "vendor/bin/phpunit --testsuite all --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
} }
} }