-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (56 loc) · 1.41 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
{
"name": "phpab/analytics-mongodb",
"type": "library",
"description": "Store PhpAB tests participations in MongoDB",
"keywords": [
"phpab",
"analytics-mongodb",
"analytics",
"mongodb"
],
"homepage": "https://github.com/phpab/analytics-mongodb",
"license": "MIT",
"authors": [
{
"name": "Walter Tamboer",
"email": "[email protected]",
"homepage": "https://github.com/waltertamboer",
"role": "Developer"
},
{
"name": "Patrick Heller",
"email": "[email protected]",
"homepage": "https://github.com/psren",
"role": "Developer"
},
{
"name": "Mariano F.co Benítez Mulet",
"email": "[email protected]",
"homepage": "https://github.com/pachico",
"role": "Developer"
}
],
"require": {
"php": "~5.5|~7.0",
"ext-mongodb": "1.1.*",
"mongodb/mongodb": "^1.0.0",
"phpab/phpab": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "^2.5"
},
"autoload": {
"psr-4": {
"PhpAb\\Analytics\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpAb\\Analytics\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}