forked from Hendra-Huang/CassandraBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 925 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
{
"name": "markendev-cassandra-bundle",
"type" : "symfony-bundle",
"description": "Symfony2 / Symfony 3 bundle on top of datastax/php-driver",
"keywords": ["cassandra", "bundle", "symfony2", "symfony3"],
"license" : "MIT",
"authors": [
{
"name": "Andrii Pleskach",
"email": "andrii.pleskach@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"ext-cassandra": "*"
},
"require-dev": {
"atoum/atoum": "~2.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"datastax/php-driver": "dev-master"
},
"autoload": {
"psr-4": {
"CassandraBundle\\": ""
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"config": {
"bin-dir": "bin/"
},
"minimum-stability": "dev"
}