forked from datastax/php-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.14 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "gold-development/cassandra-php-driver",
"type": "php-ext",
"description": "DataStax PHP Driver for Apache Cassandra",
"keywords": [
"cassandra",
"nosql",
"database",
"driver",
"datastax"
],
"homepage": "https://github.com/gold-development/cassandra-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": ">=8.1"
},
"php-ext": {
"extension-name": "cassandra"
},
"require-dev": {
"behat/behat": "^3.7",
"phpunit/php-code-coverage": "^7.0",
"phpunit/php-token-stream": "^3.1",
"phpunit/phpunit": "^8.5",
"symfony/process": "^5.4"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"test": "phpunit && behat"
},
"autoload-dev": {
"files": ["support/ccm.php"],
"psr-4": {
"Cassandra\\": ["tests/unit/Cassandra/", "tests/integration/Cassandra/"]
}
}
}