Files
checadores/include/vendor/seinopsys/postgresql-database-class/composer.json
2024-08-02 12:00:57 -06:00

35 lines
845 B
JSON

{
"name": "seinopsys/postgresql-database-class",
"description": "PHP wrapper class for PDO-based interaction with PostgreSQL databases, heavily based on ThingEngineer's MysqliDb class",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "SeinopSys",
"email": "seinopsys@gmail.com",
"homepage": "https://github.com/SeinopSys",
"role": "Developer"
}
],
"require": {
"php": ">=5.4",
"ext-pdo": "*",
"ext-pdo_pgsql": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"SeinopSys\\": "src/"
}
},
"scripts": {
"test": "@php test.php",
"lint": "vendor/bin/phpcs . --standard=ruleset.xml"
},
"scripts-descriptions": {
"test": "Run tests - likely going to fail unless running on Travis CI",
"lint": "Run PHP_CodeSniffer with the project's ruleset"
}
}