Skip to content

Commit 1cd38ee

Browse files
committed
added support for PHP 7
1 parent ebc718c commit 1cd38ee

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ language: php
22

33
php:
44
# using major version aliases
5-
- 5.3
6-
- 5.4
7-
- 5.5
5+
- 7.0
6+
- 7.1
7+
- 7.2
8+
- 7.3
9+
- 7.4
810

911
before_script:
1012
- composer install --dev

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
"GPL-3.0+",
1515
"LGPL-3.0+"
1616
],
17-
"author": [
17+
"authors": [
1818
{
1919
"name": "Dennis Riehle",
2020
"role": "Developer"
2121
}
2222
],
2323
"require-dev": {
24-
"phpunit/phpunit": "3.7.*"
24+
"phpunit/phpunit": "^6.5.0"
2525
},
2626
"require": {
27-
"php": ">=5.3.0"
27+
"php": ">=7.0"
2828
},
2929
"autoload": {
3030
"psr-0": {
@@ -33,7 +33,7 @@
3333
},
3434
"extra": {
3535
"branch-alias": {
36-
"dev-master": "2.0-dev"
36+
"dev-master": "3.0-dev"
3737
}
3838
}
3939
}

tests/Md5Crypt/Md5CryptTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use Md5Crypt\Md5Crypt;
44

5-
class Md5CryptTest extends PHPUnit_Framework_TestCase
5+
class Md5CryptTest extends \PHPUnit\Framework\TestCase
66
{
77
public function testCryptApache()
88
{

0 commit comments

Comments
 (0)