forked from bosnadev/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 894 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "bosnadev/database",
"description": "Eloquent Extended, added some PostgreSql features",
"keywords": [
"laravel",
"eloquent",
"database",
"mysql",
"postgresql",
"database"
],
"authors": [
{
"name": "Mirza Pasic",
"email": "[email protected]"
},
{
"name": "Peter Haza",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"illuminate/database": "~5.0",
"ramsey/uuid": "~2.8"
},
"require-dev": {
"php": ">=5.4",
"phpunit/phpunit": "~4.5",
"mockery/mockery": "0.9.*",
"doctrine/dbal": "~2.5"
},
"autoload": {
"psr-4": {
"Bosnadev\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bosnadev\\Tests\\Database\\": "tests/"
},
"classmap": [
"tests/BaseTestCase.php"
]
},
"minimum-stability": "stable"
}