-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 879 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "agencychief/php-couchdb",
"description": "Library for easily talking to CouchDB from PHP",
"type": "library",
"license": "Apache-2.0",
"version": "0.2",
"authors": [
{
"name": "Lorna Jane Mitchell",
"email": "lorna@lornajane.net"
},
{
"name": "Dietrich Gottfried Schmidt",
"email": "dietric@gmail.com"
}
],
"autoload": {
"psr-4": {"PHPCouchDB\\": "src/PHPCouchDB"}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/php-timer": "^6.0",
"phpunit/phpunit": "^10.2"
},
"scripts": {
"phpcs": "phpcs --standard=PSR2 src",
"docs": "phpdox",
"test": "phpunit -c tests/phpunit.xml"
}
}