60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "laminas/laminas-json",
|
|
"description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
|
|
"license": "BSD-3-Clause",
|
|
"keywords": [
|
|
"laminas",
|
|
"json"
|
|
],
|
|
"homepage": "https://laminas.dev",
|
|
"support": {
|
|
"docs": "https://docs.laminas.dev/laminas-json/",
|
|
"issues": "https://github.com/laminas/laminas-json/issues",
|
|
"source": "https://github.com/laminas/laminas-json",
|
|
"rss": "https://github.com/laminas/laminas-json/releases.atom",
|
|
"chat": "https://laminas.dev/chat",
|
|
"forum": "https://discourse.laminas.dev"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "~8.0.0 || ~8.1.0 || ~8.2.0"
|
|
},
|
|
"require-dev": {
|
|
"laminas/laminas-coding-standard": "~2.4.0",
|
|
"laminas/laminas-stdlib": "^2.7.7 || ^3.1",
|
|
"phpunit/phpunit": "^9.5.25"
|
|
},
|
|
"suggest": {
|
|
"laminas/laminas-json-server": "For implementing JSON-RPC servers",
|
|
"laminas/laminas-xml2json": "For converting XML documents to JSON"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Laminas\\Json\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"LaminasTest\\Json\\": "test/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs-check",
|
|
"@test"
|
|
],
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf",
|
|
"test": "phpunit --colors=always",
|
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
|
},
|
|
"conflict": {
|
|
"zendframework/zend-json": "*"
|
|
}
|
|
}
|