Skip to content

Commit 4fcdd61

Browse files
authored
Merge pull request #24 from jameswilddev/fix/php-8
Add PHP 8.0 support.
2 parents d1e3326 + c36a7ef commit 4fcdd61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
language: php
2-
dist: trusty
2+
distro: bionic
33
php:
44
- '7.1'
55
- '7.2'
66
- '7.3'
77
- '7.4'
8+
- '8.0'
89
install:
910
- composer update
1011
script:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"description": "Laravel validation rule that checks if a password has been exposed in a data breach",
44
"type": "library",
55
"require": {
6-
"php": "^7.1",
7-
"divineomega/password_exposed": "^3.0.1",
6+
"php": "^7.1||^8.0",
7+
"divineomega/password_exposed": "^3.2.0",
88
"illuminate/contracts": "^5.1||^6.0||^7.0||^8.0"
99
},
1010
"license": "LGPL-3.0-only",

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<testsuites>
1212
<testsuite name="Unit Tests">
1313
<directory suffix="Test.php">./tests/Unit</directory>
14-
<directory suffix="Test.php">./tests/Integration</directory>
1514
</testsuite>
1615
</testsuites>
1716
<filter>

0 commit comments

Comments
 (0)