-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (63 loc) · 1.67 KB
/
composer.json
File metadata and controls
64 lines (63 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "phpab/analytics-pdo",
"type": "library",
"description": "Store PhpAb tests participations using PDO DBAL.",
"keywords": [
"phpab",
"analytics-pdo",
"analytics",
"pdo",
"tests",
"database"
],
"homepage": "https://github.com/phpab/analytics-pdo",
"license": "MIT",
"authors": [
{
"name": "Walter Tamboer",
"email": "walter@tamboer.nl",
"homepage": "https://github.com/waltertamboer",
"role": "Developer"
},
{
"name": "Patrick Heller",
"email": "paddy.heller@gmail.com",
"homepage": "https://github.com/psren",
"role": "Developer"
},
{
"name": "Mariano F.co Benítez Mulet",
"email": "pachicodev@gmail.com",
"homepage": "https://github.com/pachico",
"role": "Developer"
}
],
"require": {
"php": "~5.5|~7.0",
"phpab/phpab": "dev-master",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "^2.5",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"PhpAb\\Analytics\\": "src"
}
},
"suggest": {
"ext-sqlite3": "Required module to store tests in sqlite3 databases",
"ext-mysql": "Required module to store tests in MySql server",
"ext-pgsql": "Required module to store tests in PostgreSQL servers"
},
"autoload-dev": {
"psr-4": {
"PhpAb\\Analytics\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}