-
Notifications
You must be signed in to change notification settings - Fork 153
/
composer.json
48 lines (48 loc) · 1.06 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "datastax/php-driver",
"type": "library",
"description": "DataStax PHP Driver for Apache Cassandra",
"keywords": [
"cassandra",
"nosql",
"database",
"driver",
"datastax"
],
"homepage": "http://datastax.github.io/php-driver/",
"license": "Apache-2.0",
"authors": [
{
"name": "Michael Penick",
"email": "michael.penick@datastax.com",
"homepage": "https://github.com/mpenick"
},
{
"name": "Bulat Shakirzyanov",
"email": "bulat.shakirzyanov@datastax.com",
"homepage": "http://avalanche123.com"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"behat/behat": "~3.0.6",
"phpunit/php-code-coverage": "~2.0",
"phpunit/php-token-stream": "~1.3",
"phpunit/phpunit": "~4.8",
"symfony/process": "~2.1"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"test": "phpunit && behat"
},
"autoload-dev": {
"files": ["support/ccm.php"],
"psr-4": {
"Cassandra\\": ["tests/unit/Cassandra/", "tests/integration/Cassandra/"]
}
}
}