Skip to content

Commit 44fd0bf

Browse files
committed
Upgrade dependencies / PHP >= 5.6
1 parent f9b9e4c commit 44fd0bf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: required
33
language: php
44

55
php:
6-
- 5.5
76
- 5.6
87
- 7.0
98
- 7.1

bin/check-syntax.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PHP='/usr/bin/env php'
44
RETURN=0
55

66
# check PHP files
7-
for FILE in `find lib -name "*.php"`; do
7+
for FILE in `find lib tests -name "*.php"`; do
88
$PHP -l $FILE > /dev/null 2>&1
99
if [ $? -ne 0 ]; then
1010
echo "Syntax check failed for ${FILE}"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
}
3232
},
3333
"require": {
34-
"php": ">=5.5",
34+
"php": ">=5.6",
3535
"simplesamlphp/composer-module-installer": "~1.1",
3636
"webmozart/assert": "~1.4"
3737
},
3838
"require-dev": {
3939
"simplesamlphp/simplesamlphp": "^1.17",
40-
"phpunit/phpunit": "~4.8.36"
40+
"phpunit/phpunit": "~5.7"
4141
},
4242
"support": {
4343
"issues": "https://github.com/tvdijen/simplesamlphp-module-ldap/issues",

0 commit comments

Comments
 (0)