Skip to content

Commit 89c1e5e

Browse files
committed
Force 7.3. Fix #457 phpunit issues
1 parent e377511 commit 89c1e5e

4 files changed

Lines changed: 301 additions & 593 deletions

File tree

.travis.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
language: php
22
dist: trusty
33
php:
4-
- 5.5
5-
- 5.6
6-
- 7.0
74
- 7.1
85
- 7.2
96
- 7.3
10-
11-
matrix:
12-
fast_finish: true
13-
include:
14-
- php: 5.4
15-
dist: precise
7+
- 7.4
8+
- 8.0
169

1710
before_install:
1811
- composer self-update || true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and supported by OneLogin Inc.
1010
Warning
1111
-------
1212

13-
This version is compatible with PHP >7.1 and 8.X and does not include xmlseclibs (you will need to install it via composer, dependency described in composer.json)
13+
This version is compatible with PHP >=7.3 and 8.X and does not include xmlseclibs (you will need to install it via composer, dependency described in composer.json)
1414

1515
Security Guidelines
1616
-------------------
@@ -124,7 +124,7 @@ Your settings are at risk of being deleted when updating packages using `compose
124124
Compatibility
125125
-------------
126126

127-
This 4.X.X supports PHP >7.1 .
127+
This 4.X.X supports PHP >=7.3 .
128128

129129
It is not compatible with PHP5.6 or PHP7.0.
130130

composer.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"source": "https://github.com/onelogin/php-saml/"
1616
},
1717
"require": {
18-
"php": ">=7.1",
18+
"php": ">=7.3",
1919
"robrichards/xmlseclibs": ">=3.1.1",
20-
"phpunit/phpunit": "^7.5.20 || ^9.5"
20+
"phpunit/phpunit": "^9.5"
2121
},
2222
"require-dev": {
2323
"php-coveralls/php-coveralls": "^2.0",
@@ -26,6 +26,13 @@
2626
"pdepend/pdepend": "^2.8.0",
2727
"squizlabs/php_codesniffer": "^3.5.8"
2828
},
29+
"config": {
30+
"platform": {
31+
"php": "7.3.0"
32+
},
33+
"optimize-autoloader": true,
34+
"sort-packages": true
35+
},
2936
"suggest": {
3037
"ext-openssl": "Install openssl lib in order to handle with x509 certs (require to support sign and encryption)",
3138
"ext-curl": "Install curl lib to be able to use the IdPMetadataParser for parsing remote XMLs",

0 commit comments

Comments
 (0)