| 123456789101112131415161718192021222324252627282930 |
- {
- "name": "ibm-watson-data-lab/php-couchdb",
- "description": "Library for easily talking to CouchDB from PHP",
- "type": "library",
- "license": "Apache-2.0",
- "version": "0.1.2",
- "authors": [
- {
- "name": "Lorna Jane Mitchell",
- "email": "lorna@lornajane.net"
- }
- ],
- "autoload": {
- "psr-4": {"PHPCouchDB\\": "src/PHPCouchDB"}
- },
- "require": {
- "php": "^7.0",
- "guzzlehttp/guzzle": "^6.2"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.1",
- "squizlabs/php_codesniffer": "^3.0",
- "theseer/phpdox": "~0.10"
- },
- "scripts": {
- "phpcs": "phpcs --standard=PSR2 src",
- "docs": "phpdox",
- "test": "phpunit -c tests/phpunit.xml"
- }
- }
|