{ "name": "dvdgiessen/dbsr", "description": "Database Search & Replace", "keywords": ["DBSR", "database", "search", "replace", "search-replace", "mysql", "sql"], "homepage": "https://github.com/DvdGiessen/DBSR#readme", "license": "GPL-3.0", "authors": [{ "name": "DvdGiessen", "email": "dbsr@dvdgiessen.nl", "homepage": "http://www.dvdgiessen.nl/" }], "support": { "issues": "https://github.com/DvdGiessen/DBSR/issues", "source": "https://github.com/DvdGiessen/DBSR" }, "autoload": { "psr-4": { "": "src/" } }, "bin": [ "compiled/DBSearchReplace-CLI.php" ], "require": { "php": "^5.3 || ^7.0", "ext-pdo": "*", "ext-pdo_mysql": "*" }, "require-dev": { "eloquent/composer-npm-bridge": "4.1", "friendsofphp/php-cs-fixer": "^2.16", "phpunit/phpunit": "^9.2", "squizlabs/php_codesniffer": "^3.4", "vimeo/psalm": "^3.11" }, "scripts": { "compile": "php -f compile.php", "lint": [ "php-cs-fixer fix --dry-run --diff", "phpcs --standard=PSR12 src test", "psalm" ], "fix": [ "php-cs-fixer fix", "phpcbf --standard=PSR12 src test", "psalter --issues=MissingReturnType,MissingClosureReturnType,InvalidReturnType,InvalidNullableReturnType,InvalidFalsableReturnType,MissingParamType,MismatchingDocblockParamType,MismatchingDocblockReturnType,PossiblyUndefinedVariable,PossiblyUndefinedGlobalVariable" ], "test": "phpunit" } }