- Composer-Package, PSR-4-Autoload - Client mit Sync, Async (mit Polling), Webhook, Verify, Download - PHP 8.1+ mit readonly-Properties - Webhook-Signatur-Verifikation (hash_equals) - PHPUnit-Tests
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "hightrusted/capture",
|
|
"description": "PHP SDK für die hightrusted CAPTURE API — forensische Web-Captures mit qualifiziertem Zeitstempel",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"keywords": ["capture", "screenshot", "rfc3161", "timestamp", "eidas", "forensic", "evidence"],
|
|
"homepage": "https://capture.hightrusted.net",
|
|
"authors": [
|
|
{
|
|
"name": "hightrusted GmbH",
|
|
"email": "developers@hightrusted.net",
|
|
"homepage": "https://hightrusted.net"
|
|
}
|
|
],
|
|
"support": {
|
|
"email": "developers@hightrusted.net",
|
|
"issues": "https://git.hightrusted.net/hightrusted-capture/php/issues",
|
|
"source": "https://git.hightrusted.net/hightrusted-capture/php",
|
|
"docs": "https://capture.hightrusted.net/api/docs"
|
|
},
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"ext-curl": "*",
|
|
"ext-json": "*",
|
|
"ext-hash": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.5",
|
|
"friendsofphp/php-cs-fixer": "^3.50"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Hightrusted\\Capture\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Hightrusted\\Capture\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"format": "php-cs-fixer fix"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|