forked from Imhonet-ru/Connection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (53 loc) · 1.46 KB
/
composer.json
File metadata and controls
60 lines (53 loc) · 1.46 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "imhonet/connection",
"type": "library",
"license": "MIT",
"support": {
"email": "web@imhoclub.ru"
},
"autoload": {
"psr-4" : {
"Imhonet\\Connection\\" : "src/"
}
},
"config": {
"secure-http": false
},
"repositories": [
{
"type": "package",
"package": {
"name": "couchbase/php-ext-couchbase",
"version": "dev-master",
"source": {
"url": "http://review.couchbase.org/p/php-ext-couchbase.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=5.4",
"elasticsearch/elasticsearch": "~2.0",
"tz-lom/hsphp": "dev-master",
"respect/validation": "@stable",
"ramsey/array_column": "~1.1"
},
"suggest": {
"neutron/sphinxsearch-api": "Add into your composer.json right version of SphinxAPI accordingly to your sphinx server"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"fabpot/php-cs-fixer": "~2.0@dev",
"couchbase/php-ext-couchbase": "dev-master",
"neutron/sphinxsearch-api": "0.9.9"
},
"scripts": {
"tests": [
"phpunit",
"php-cs-fixer fix ./src --no-interaction --dry-run",
"php-cs-fixer fix ./tests --no-interaction --dry-run"
]
}
}