did-manager/composer.json
Oliver Hader 4c1402cdf3
Downgrade PHP requirement to PHP 8.0
Signed-off-by: Oliver Hader <oliver.hader@typo3.org>
2026-03-22 14:26:53 +01:00

50 lines
1.1 KiB
JSON

{
"name": "fairpm/did-manager",
"description": "Core PHP library for DID management, key handling, and PLC operations",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "FAIRPM",
"email": "info@fairpm.org"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"simplito/elliptic-php": "^1.0",
"spomky-labs/cbor-php": "^3.1",
"yocto/yoclib-multibase": "^1.2"
},
"require-dev": {
"carthage-software/mago": "^1.0.0-rc.12",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"FAIR\\": "src/FAIR/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyze": "mago analyze",
"format": "mago format",
"lint": "mago lint",
"tests": "phpunit"
},
"config": {
"allow-plugins": {
"carthage-software/mago": true
},
"notify-on-install": false,
"optimize-autoloader": true,
"sort-packages": true
}
}