We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f65041 commit 4f703f1Copy full SHA for 4f703f1
3 files changed
.travis.yml
@@ -3,7 +3,6 @@ sudo: required
3
language: php
4
5
php:
6
- - 5.5
7
- 5.6
8
- 7.0
9
- 7.1
bin/check-syntax.sh
@@ -4,7 +4,7 @@ PHP='/usr/bin/env php'
RETURN=0
# check PHP files
-for FILE in `find config-templates lib www -name "*.php"`; do
+for FILE in `find config-templates lib tests www -name "*.php"`; do
$PHP -l $FILE > /dev/null 2>&1
if [ $? -ne 0 ]; then
10
echo "Syntax check failed for ${FILE}"
composer.json
@@ -36,7 +36,7 @@
36
},
37
"require-dev": {
38
"simplesamlphp/simplesamlphp": "^1.17",
39
- "phpunit/phpunit": "~4.8.36"
+ "phpunit/phpunit": "~5.7"
40
41
"support": {
42
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/issues",
0 commit comments