composer.json 845 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "seinopsys/postgresql-database-class",
  3. "description": "PHP wrapper class for PDO-based interaction with PostgreSQL databases, heavily based on ThingEngineer's MysqliDb class",
  4. "license": "GPL-3.0-or-later",
  5. "authors": [
  6. {
  7. "name": "SeinopSys",
  8. "email": "seinopsys@gmail.com",
  9. "homepage": "https://github.com/SeinopSys",
  10. "role": "Developer"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.4",
  15. "ext-pdo": "*",
  16. "ext-pdo_pgsql": "*"
  17. },
  18. "require-dev": {
  19. "squizlabs/php_codesniffer": "3.*"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "SeinopSys\\": "src/"
  24. }
  25. },
  26. "scripts": {
  27. "test": "@php test.php",
  28. "lint": "vendor/bin/phpcs . --standard=ruleset.xml"
  29. },
  30. "scripts-descriptions": {
  31. "test": "Run tests - likely going to fail unless running on Travis CI",
  32. "lint": "Run PHP_CodeSniffer with the project's ruleset"
  33. }
  34. }