Skip to content

Commit

Permalink
Change composer.json
Browse files Browse the repository at this point in the history
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 #19)
- Update package to more recent versions
- Pin lcobucci/jwt to 3.3.3
- Pin PHPUnit to v8 and v9
  • Loading branch information
Potherca committed Dec 8, 2021
1 parent 4b6d20c commit 55e1afa
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,25 @@
},
"config": {
"bin-dir": "./bin",
"platform": {
"php": "7.2",
"ext-json": "1",
"ext-mbstring": "1",
"ext-openssl": "1"
},
"sort-packages": true
},
"description": "OAuth2, OpenID and OIDC for Solid Server implementations.",
"license": "MIT",
"name": "pdsinterop/solid-auth",
"require": {
"php": ">=7.2",
"php": "^7.3",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"laminas/laminas-diactoros": "^2.8",
"lcobucci/jwt": "3.3.3",
"league/oauth2-server": "^8.1",
"web-token/jwt-core": "^2.2"
},
"require-dev": {
"ext-xdebug": "*",
"ext-xml": "*",
"laminas/laminas-diactoros": "^2.3",
"lcobucci/jwt": "^3.3",
"phpunit/phpunit": "^8.5"
"phpunit/phpunit": "^8.5 | ^9.5"
},
"scripts": {
"tests:example": "php -S localhost:8080 -t ./tests/ ./tests/example.php",
Expand Down

0 comments on commit 55e1afa

Please sign in to comment.