-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (37 loc) · 1010 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
{
"name": "fhenne/laravel-informix",
"description": "A Informix based Eloquent model and Query builder for Laravel (Moloquent)",
"keywords": ["laravel","eloquent","informix","database","model","moloquent"],
"homepage": "http://github.com/fhenne/laravel-informix",
"version": "0.1",
"authors": [
{
"name": "Frederik Henne"
}
],
"license" : "MIT",
"require": {
"illuminate/support": "^5.1",
"illuminate/container": "^5.1",
"illuminate/database": "^5.1",
"illuminate/events": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0",
"orchestra/testbench": "^3.1",
"mockery/mockery": "^0.9",
"satooshi/php-coveralls": "^0.6"
},
"autoload": {
"psr-0": {
"fhenne\\Informix": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/models",
"tests/seeds"
]
}
}