23 lines
571 B
JSON
23 lines
571 B
JSON
{
|
|
"name": "uploadshield/upload-shield",
|
|
"description": "UploadShield — hardened PHP upload protection with quarantine and detectors (formerly Upload Logger)",
|
|
"type": "library",
|
|
"require": {
|
|
"php": "^8.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"UploadLogger\\Core\\": "core/",
|
|
"UploadLogger\\Detectors\\": "detectors/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpunit/phpunit": "^9.6"
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit --configuration phpunit.xml",
|
|
"analyze": "vendor/bin/phpstan analyse -c phpstan.neon"
|
|
}
|
|
}
|