-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 921 Bytes
/
composer.json
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
35
36
37
{
"name": "ganesha-plugin/couchbase-adapter",
"description": "Couchbase adapter for ackintosh/ganesha",
"keywords": ["circuit breaker"],
"type": "library",
"require": {
"php": ">=5.6",
"ext-couchbase": "^2.4",
"ackintosh/ganesha": "^0.5"
},
"require-dev": {
"phpmd/phpmd": "^2.7",
"phpunit/phpunit": "^4.8|^5.7|^6.5|^7.1|^8.4",
"sebastian/phpcpd": "^2.0|^3.0|^4.1",
"squizlabs/php_codesniffer": "^2.9|^3.5"
},
"license": "MIT",
"authors": [
{
"name": "xKerman",
"email": "xKhorasan@gmail.com"
}
],
"autoload": {
"psr-4": {
"GaneshaPlugin\\": "src/"
}
},
"scripts": {
"test": [
"phpcs",
"phpmd src/ text ./phpmd.xml",
"phpcpd src/",
"phpdbg -qrr ./vendor/bin/phpunit"
]
}
}