composer.json
{
"name": "particleflux/password-manager-connection",
"type": "library",
"description": "Connect to an external password/secret manager",
"license": "MIT",
"authors": [
{
"name": "Stefan Linke",
"email": "particleflux@gmail.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "dev-develop",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^1.0",
"infection/infection": "^0.27.4"
},
"autoload": {
"psr-4": {
"particleflux\\PMConnection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"particleflux\\PMConnection\\tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}