Skip to content

Commit 6a48577

Browse files
committed
Change composer.json
As part of the PDS Interop-wide PHP project updates: - Remove unneeded platform config - Set minimum PHP version to PHP 7.3 (but lower than PHP8, see pdsinterop/php-solid-auth#19) - Update package to more recent versions - Contrain PDS Interop packages to version rather than dev-main - Pin lcobucci/jwt to 3.3.3 - Pin PHPUnit to v8 and v9
1 parent 1425943 commit 6a48577

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

composer.json

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,34 @@
66
},
77
"config": {
88
"bin-dir": "./bin",
9-
"platform": {
10-
"php": "7.3",
11-
"ext-dom": "0.0.0",
12-
"ext-mbstring": "0.0.0"
13-
},
149
"sort-packages": true
1510
},
1611
"description": "Standalone Solid Server written in PHP by PDS Interop.",
1712
"license": "MIT",
1813
"name": "pdsinterop/solid-server",
1914
"require": {
20-
"php": "~7.1",
15+
"php": "^7.3",
16+
"ext-dom": "*",
2117
"ext-json": "*",
2218
"ext-mbstring": "*",
2319
"ext-openssl": "*",
24-
"codercat/jwk-to-pem": "^1.0",
25-
"defuse/php-encryption": "^2.2",
26-
"laminas/laminas-diactoros": " ^2.3",
27-
"laminas/laminas-httphandlerrunner": "^1.2",
20+
"codercat/jwk-to-pem": "^1.1",
21+
"defuse/php-encryption": "^2.3",
22+
"laminas/laminas-diactoros": " ^2.8",
23+
"laminas/laminas-httphandlerrunner": "^1.5",
2824
"lcobucci/jwt": "3.3.3",
29-
"league/container": "^3.3",
30-
"league/flysystem": "^1.0.",
31-
"league/oauth2-server": "8.1",
25+
"league/container": "^3.4",
26+
"league/flysystem": "^1.1",
27+
"league/oauth2-server": "^8.1",
3228
"league/route": "^4.5",
33-
"pdsinterop/flysystem-rdf": "dev-main",
34-
"pdsinterop/solid-auth": "dev-main",
35-
"pdsinterop/solid-crud": "dev-main",
36-
"php-http/httplug": "^2.1",
37-
"phptal/phptal": "^1.4"
29+
"pdsinterop/flysystem-rdf": "^0.3",
30+
"pdsinterop/solid-auth": "^0.6",
31+
"pdsinterop/solid-crud": "^0.3",
32+
"php-http/httplug": "^2.2",
33+
"phptal/phptal": "^1.5"
3834
},
3935
"require-dev": {
40-
"phpunit/phpunit": "*"
36+
"phpunit/phpunit": "^8.5 | ^9.5"
4137
},
4238
"scripts": {
4339
"lint":"",

0 commit comments

Comments
 (0)