Commit inicial
This commit is contained in:
34
include/vendor/seinopsys/postgresql-database-class/composer.json
vendored
Normal file
34
include/vendor/seinopsys/postgresql-database-class/composer.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user