We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be32e7f commit f413132Copy full SHA for f413132
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
strategy:
10
matrix:
11
operating-system: ['ubuntu-latest']
12
- php-versions: ['5.4', '5.5', '5.6']
+ php-versions: ['5.6']
13
14
steps:
15
- uses: shivammathur/setup-php@v2
composer.json
@@ -15,7 +15,8 @@
}
16
},
17
"require": {
18
- "php": ">= 5.4",
19
- "ext-openssl": "*"
+ "php": ">= 5.6.1",
+ "ext-openssl": "*",
20
+ "phpseclib/phpseclib": "~3.0"
21
22
xmlseclibs.php
@@ -40,6 +40,7 @@
40
* @version 3.1.3
41
*/
42
43
+require __DIR__ . '/vendor/autoload.php';
44
$xmlseclibs_srcdir = dirname(__FILE__) . '/src/';
45
require $xmlseclibs_srcdir . '/XMLSecurityKey.php';
46
require $xmlseclibs_srcdir . '/XMLSecurityDSig.php';
0 commit comments