forked from nemanjaljuba/spot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 873 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
{
"name": "suzol10/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",
"authors" : [
{
"name": "Vance Lucas",
"email": "[email protected]",
"homepage": "http://www.vancelucas.com"
}
],
"require": {
"php": ">=5.4.0 || >=8.2.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/"
}
}
}