| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "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"
- }
- }
|