-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 967 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": "stidges/laravel-db-normalizer",
"description": "Normalize all database results to one unified interface, to make swapping repositories a breeze.",
"version": "0.1.0",
"homepage": "https://github.com/stidges/laravel-db-normalizer",
"authors": [
{
"name": "Stidges",
"email": "info@stidges.com",
"homepage": "http://twitter.com/stidges"
}
],
"keywords": [
"db",
"normalizer",
"laravel",
"eloquent",
"repositories"
],
"require": {
"php": ">=5.4.0",
"illuminate/database": "4.1.*"
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"Stidges\\LaravelDbNormalizer\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"license": "MIT"
}