Skip to content

Commit 6751d20

Browse files
authored
Test against PHP 7.4 (#18)
* Test against PHP 7.4 * Update .travis.yml * Test against nightly * Add ignore platform reqs * Fix flags * fix * ix * Update README.md * Update .travis.yml
1 parent 16aaf99 commit 6751d20

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ php:
55
- 7.1
66
- 7.2
77
- 7.3
8+
- 7.4snapshot
9+
- nightly
10+
- hhvm
11+
12+
matrix:
13+
allow_failures:
14+
- php: 7.4snapshot
15+
- php: nightly
16+
- php: hhvm
817

9-
install: composer install --no-interaction --classmap-authoritative --no-suggest
18+
install: composer install --no-interaction --classmap-authoritative --no-suggest --ignore-platform-reqs
1019

1120
script: vendor/bin/phpunit --configuration phpunit.xml
1221

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/Ekman/Luhn-Algorithm.svg?branch=master)](https://travis-ci.org/Ekman/Luhn-Algorithm)
44
[![Coverage Status](https://coveralls.io/repos/github/Ekman/Luhn-Algorithm/badge.svg)](https://coveralls.io/github/Ekman/Luhn-Algorithm)
55

6-
This is an implementation of the Luhn Algorithm for PHP. The Luhn Algorithm is
6+
This is an implementation of the Luhn Algorithm for PHP 7.0 and above. The Luhn Algorithm is
77
used to validate things like credit cards and national identification numbers.
88
More information on the algorithm can be found at [Wikipedia](http://en.wikipedia.org/wiki/Luhn_algorithm).
99

0 commit comments

Comments
 (0)