did-manager/composer.json
Namith Jawahar bb0e6e4c87 Switch license to GPL-3.0-or-later
Changed project license from MIT to GPL-3.0-or-later in composer.json and README.md. Added full GPLv3 license text and updated README with attributions and dependency license information.
2026-01-13 22:39:57 +05:30

51 lines
1.1 KiB
JSON

{
"name": "fairpm/did-manager",
"description": "FAIR PHP CLI Tool for DID Management and WordPress Plugin/Theme Metadata Generation",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "FAIRPM",
"email": "info@fairpm.org"
}
],
"require": {
"php": ">=8.3",
"afragen/wordpress-plugin-readme-parser": "^1.2025.12",
"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
}
}