composer.json 770 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "ibm-watson-data-lab/php-couchdb",
  3. "description": "Library for easily talking to CouchDB from PHP",
  4. "type": "library",
  5. "license": "Apache-2.0",
  6. "version": "0.1.2",
  7. "authors": [
  8. {
  9. "name": "Lorna Jane Mitchell",
  10. "email": "lorna@lornajane.net"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {"PHPCouchDB\\": "src/PHPCouchDB"}
  15. },
  16. "require": {
  17. "php": "^7.0",
  18. "guzzlehttp/guzzle": "^6.2"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^6.1",
  22. "squizlabs/php_codesniffer": "^3.0",
  23. "theseer/phpdox": "~0.10"
  24. },
  25. "scripts": {
  26. "phpcs": "phpcs --standard=PSR2 src",
  27. "docs": "phpdox",
  28. "test": "phpunit -c tests/phpunit.xml"
  29. }
  30. }