Projekt

Obecné

Profil

Stáhnout (1.38 KB) Statistiky
| Větev: | Revize:
1 cb15593b Cajova-Houba
{
2
    "name": "illuminate/database",
3
    "description": "The Illuminate Database package.",
4
    "license": "MIT",
5
    "homepage": "http://laravel.com",
6
    "support": {
7
        "issues": "https://github.com/laravel/framework/issues",
8
        "source": "https://github.com/laravel/framework"
9
    },
10
    "keywords": ["laravel", "database", "sql", "orm"],
11
    "authors": [
12
        {
13
            "name": "Taylor Otwell",
14
            "email": "taylor@laravel.com"
15
        }
16
    ],
17
    "require": {
18
        "php": ">=5.5.9",
19
        "illuminate/container": "5.2.*",
20
        "illuminate/contracts": "5.2.*",
21
        "illuminate/support": "5.2.*",
22
        "nesbot/carbon": "~1.20"
23
    },
24
    "autoload": {
25
        "psr-4": {
26
            "Illuminate\\Database\\": ""
27
        }
28
    },
29
    "extra": {
30
        "branch-alias": {
31
            "dev-master": "5.2-dev"
32
        }
33
    },
34
    "suggest": {
35
        "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
36
        "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
37
        "illuminate/console": "Required to use the database commands (5.2.*).",
38
        "illuminate/events": "Required to use the observers with Eloquent (5.2.*).",
39
        "illuminate/filesystem": "Required to use the migrations (5.2.*).",
40
        "illuminate/pagination": "Required to paginate the result set (5.2.*)."
41
    },
42
    "minimum-stability": "dev"
43
}