Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump min PHP version #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ cache:
- $HOME/.composer/cache

php:
- 7.1
- 7.2
- 7.3
- nightly

before_install:
Expand All @@ -33,20 +33,20 @@ jobs:
include:
- stage: Test
env: LOWEST_DEPENDENCIES
php: 7.1
php: 7.2
install:
- travis_retry composer update --no-interaction --no-suggest --prefer-dist --prefer-lowest

- stage: Test
env: DEV_DEPENDENCIES
php: 7.2
php: 7.4snapshot

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The php-7.4 version is available now.

It should use php-7.4 version instead.

install:
- composer config minimum-stability dev
- travis_retry composer update --no-interaction --no-suggest --prefer-dist

- stage: Test
env: COVERAGE
php: 7.1
php: 7.2
script:
- vendor/bin/tester -s -p phpdbg -c ./tests/php.ini-unix --coverage ./coverage.xml --coverage-src ./src tests/
after_script:
Expand All @@ -66,7 +66,7 @@ jobs:

- stage: Code Quality
env: CODING_STANDARDS
php: 7.1
php: 7.2
script:
- vendor/bin/phpcs

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"issues": "https://github.com/Kdyby/DateTimeProvider/issues"
},
"require": {
"php": "^7.1",
"php": "^7.2",
"kdyby/strict-objects": "^1.0"
},
"require-dev": {
Expand Down