You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
2 months ago
|
{
|
||
|
"name": "laminas/laminas-escaper",
|
||
|
"description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
|
||
|
"license": "BSD-3-Clause",
|
||
|
"keywords": [
|
||
|
"laminas",
|
||
|
"escaper"
|
||
|
],
|
||
|
"homepage": "https://laminas.dev",
|
||
|
"support": {
|
||
|
"docs": "https://docs.laminas.dev/laminas-escaper/",
|
||
|
"issues": "https://github.com/laminas/laminas-escaper/issues",
|
||
|
"source": "https://github.com/laminas/laminas-escaper",
|
||
|
"rss": "https://github.com/laminas/laminas-escaper/releases.atom",
|
||
|
"chat": "https://laminas.dev/chat",
|
||
|
"forum": "https://discourse.laminas.dev"
|
||
|
},
|
||
|
"config": {
|
||
|
"sort-packages": true,
|
||
|
"platform": {
|
||
|
"php": "8.1.99"
|
||
|
},
|
||
|
"allow-plugins": {
|
||
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||
|
"composer/package-versions-deprecated": true,
|
||
|
"infection/extension-installer": true
|
||
|
}
|
||
|
},
|
||
|
"extra": {
|
||
|
},
|
||
|
"require": {
|
||
|
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
|
||
|
"ext-ctype": "*",
|
||
|
"ext-mbstring": "*"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"infection/infection": "^0.27.0",
|
||
|
"laminas/laminas-coding-standard": "~2.5.0",
|
||
|
"maglnet/composer-require-checker": "^3.8.0",
|
||
|
"phpunit/phpunit": "^9.6.7",
|
||
|
"psalm/plugin-phpunit": "^0.18.4",
|
||
|
"vimeo/psalm": "^5.9"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Laminas\\Escaper\\": "src/"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"LaminasTest\\Escaper\\": "test/"
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
|
"check": [
|
||
|
"@cs-check",
|
||
|
"@test"
|
||
|
],
|
||
|
"cs-check": "phpcs",
|
||
|
"cs-fix": "phpcbf",
|
||
|
"static-analysis": "psalm --shepherd --stats",
|
||
|
"test": "phpunit --colors=always",
|
||
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
||
|
},
|
||
|
"conflict": {
|
||
|
"zendframework/zend-escaper": "*"
|
||
|
}
|
||
|
}
|