forked from illuminate/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·39 lines (39 loc) · 999 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
{
"name": "illuminate/database",
"license": "MIT",
"keywords": ["laravel", "database", "sql", "orm"],
"authors": [
{
"name": "Taylor Otwell",
"email": "taylorotwell@gmail.com"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/container": "4.1.x",
"illuminate/events": "4.1.x",
"illuminate/support": "4.1.x",
"nesbot/carbon": "1.*"
},
"require-dev": {
"illuminate/cache": "4.1.x",
"illuminate/console": "4.1.x",
"illuminate/filesystem": "4.1.x",
"illuminate/pagination": "4.1.x",
"illuminate/support": "4.1.x",
"mockery/mockery": "0.7.2",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Illuminate\\Database": ""
}
},
"target-dir": "Illuminate/Database",
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"minimum-stability": "dev"
}