mirror of
https://gh.wpcy.net/https://github.com/fairpm/did-manager.git
synced 2026-06-19 02:03:36 +08:00
50 lines
1.1 KiB
JSON
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
|
|
}
|
|
}
|