mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
33 lines
767 B
JSON
33 lines
767 B
JSON
{
|
|
"name": "root23/php-json-canonicalization",
|
|
"description": "Serialize data into canonical way, based on RFC-8785.",
|
|
"require": {
|
|
"php": ">=8.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"phpstan/phpstan": "^1.10",
|
|
"friendsofphp/php-cs-fixer": "^v3.27.0"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Root23\\JsonCanonicalizer\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Root23\\JsonCanonicalizer\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit tests"
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|