-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.15 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "vlucas/spot2",
"type": "library",
"description": "Simple DataMapper built on top of Doctrine DBAL",
"keywords": ["orm", "datamapper", "dbal", "doctrine", "database", "model", "mapper", "entity"],
"homepage": "https://github.com/vlucas/spot2",
"license" : "BSD-3-Clause",
"authors" : [
{
"name": "Vance Lucas",
"email": "vance@vancelucas.com",
"homepage": "http://www.vancelucas.com"
}
],
"require": {
"php": ">=5.4.0",
"vlucas/valitron": "~1.1",
"doctrine/dbal": "^2.5.4",
"sabre/event": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"Spot\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"SpotTest\\": "tests/"
}
},
"scripts": {
"test_mysql": "vendor/bin/phpunit --configuration phpunit_mysql.xml --coverage-text",
"test_pgsql": "vendor/bin/phpunit --configuration phpunit_pgsql.xml --coverage-text",
"test_sqlite": "vendor/bin/phpunit --configuration phpunit_sqlite.xml --coverage-text"
}
}