Skip to content

Allow PHP 8 #192

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 2, 2020
Merged
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
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ php:
- 7.2
- 7.3
- 7.4
- nightly

cache:
directories:
Expand All @@ -32,6 +31,11 @@ jobs:
- php: nightly

include:
- stage: Test
php: nightly
before_install:
- composer config platform.php 7.4.99

- stage: Validate against schema
addons:
apt:
Expand All @@ -46,3 +50,9 @@ jobs:
- stage: Apply fixes
php: 7.4
script: make test-fix

- stage: Apply fixes
php: nightly
before_install:
- composer config platform.php 7.4.99
script: make test-fix
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{"name": "Steve Müller", "email": "[email protected]"}
],
"require": {
"php": "^7.2",
"php": "^7.2 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
"slevomat/coding-standard": "^6.3.8",
"squizlabs/php_codesniffer": "^3.5.5"
Expand Down