did-manager/composer.json
Namith Jawahar 4d58a47f2c Prep and Files
1) Delete WordPress specific Classes and methods, its tests and examples
2) THere was a typo in one of the folder names Sorage which is now corectly named back to Storage.
3) Normalise the Namespace from Fairdidmanager to Fair\DID
4) Run Codequality checks via Mago
2026-03-13 23:33:25 +05:30

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.3",
"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
}
}