forked from bosnadev/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.03 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
{
"name": "mammutgroup/database",
"description": "Eloquent Extended, added some PostgreSQL features",
"keywords": ["laravel", "eloquent", "database", "postgresql", "database"],
"license": "MIT",
"homepage": "https://Mammutgroup.com",
"authors": [
{
"name": "sayad aazami",
"email": "[email protected]"
},
{
"name": "mohammadreza honarkhah",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"illuminate/database": "^5.0",
"ramsey/uuid": "^3.0",
"doctrine/dbal": "^2.5",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"mockery/mockery": "0.9.*",
"codeclimate/php-test-reporter": "~0.3",
"illuminate/pagination": "~5.0"
},
"autoload": {
"psr-4": {
"Mammutgroup\\Database\\": "src/Mammutgroup/Database/"
},
"files": [
"src/Helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/BaseTestCase.php"
]
},
"minimum-stability": "stable"
}