Skip to content

Commit e864bbf

Browse files
authored
Merge pull request #44 from greg0ire/php-8
Allow PHP 8
2 parents 502703b + 9552348 commit e864bbf

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,19 @@ after_script:
3939
php ocular.phar code-coverage:upload --format=php-clover clover.xml
4040
fi
4141
jobs:
42+
allow_failures:
43+
- php: nightly
44+
4245
include:
4346
- stage: Test
4447
php: 7.2
4548
env: COVERAGE=yes
4649

50+
- stage: Test
51+
php: nightly
52+
before_install:
53+
- composer config platform.php 7.4.99
54+
4755
- stage: Code Quality
4856
env: PHPSTAN
4957
php: 7.3

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{"name": "Johannes Schmitt", "email": "[email protected]"}
1818
],
1919
"require": {
20-
"php": "^7.2"
20+
"php": "^7.2 || ^8.0"
2121
},
2222
"require-dev": {
2323
"doctrine/coding-standard": "^6.0",

0 commit comments

Comments
 (0)