Skip to content

Commit

Permalink
Add support for php 8.0,8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
penance316 committed Aug 8, 2022
1 parent bb8f947 commit 849c54e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
language: php
php:
- '7.1'
- '7.2'
- '7.4'
- "7.1"
- "7.2"
- "7.4"
- "8.0"
- "8.1"

before_script:
- composer install --prefer-dist --dev
Expand Down
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "penance316/merger",
"description": "Helper to merge date ranges together.",
"keywords": ["helper", "date", "merge"],
"keywords": [
"helper",
"date",
"merge"
],
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -25,6 +29,6 @@
"phpunit/phpunit": "^7"
},
"require": {
"php": "^7.1"
"php": "^7.1|^8.0"
}
}

0 comments on commit 849c54e

Please sign in to comment.