-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.33 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ciaran-moore/php-cassandra-driver",
"type": "library",
"description": "PHP Extension for Apache Cassandra",
"keywords": [
"cassandra",
"nosql",
"database",
"driver",
"datastax",
"nanointeractive"
],
"homepage": "https://github.com/ciaran-moore/php-cassandra-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"
},
{
"name": "Dusan Malusev",
"email": "dmalusev@nanointeractive.com"
},
{
"name": "Marko Dobromirovic",
"email": "mdobromirovic@nanointeractive.com"
},
{
"name": "Ciaran Moore",
"email": "ciaran.f.moore@gmail.com"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"behat/behat": "^3.7",
"phpunit/php-code-coverage": "^7.0",
"phpunit/php-token-stream": "^3.1",
"phpunit/phpunit": "^8.5",
"symfony/process": "^2.1"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"test": "phpunit"
},
"autoload-dev": {
"psr-4": {
"Cassandra\\": ["tests/unit/Cassandra/", "tests/integration/Cassandra/"]
}
}
}