Skip to content

Commit

Permalink
Merge pull request #9 from mindplay-dk/php-8
Browse files Browse the repository at this point in the history
PHP 8 support
  • Loading branch information
mindplay-dk authored Feb 25, 2021
2 parents 56da3a7 + 2f03a3b commit 6defdfa
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 311 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.3
- 7.4
- 8.0

before_script:
- 'composer install --dev --prefer-source'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mindplay/timber

[![PHP Version](https://img.shields.io/badge/php-5.4%2B-blue.svg)](https://packagist.org/packages/mindplay/timber)
[![PHP Version](https://img.shields.io/badge/php-7.3%2B-blue.svg)](https://packagist.org/packages/mindplay/timber)
[![Build Status](https://travis-ci.org/mindplay-dk/timber.svg)](https://travis-ci.org/mindplay-dk/timber)

Timber is a request router with regular expression support, high performance, and a
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
}
],
"require": {
"php": ">=5.4.0"
"php": "^7.3 || ^8.0"
},
"require-dev": {
"mindplay/testies": "^0.3",
"phpunit/php-code-coverage": "^2.2.4"
"mindplay/testies": "^1.0"
},
"suggest": {
"ext-intl": "provides better/faster support for slug-creation in URL helpers"
Expand All @@ -31,4 +30,4 @@
"mindplay\\timber\\": "src/"
}
}
}
}
Loading

0 comments on commit 6defdfa

Please sign in to comment.