-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.2 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
46
47
48
49
50
51
52
{
"name": "ilab/illuminate-support",
"description": "The Illuminate Support package.",
"license": "MIT",
"homepage": "https://laravel.com",
"support": {
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"ext-mbstring": "*",
"doctrine/inflector": "~1.1",
"ilab/illuminate-contracts": ">=5.5,<5.6",
"nesbot/carbon": "^1.20"
},
"replace": {
"tightenco/collect": "self.version"
},
"autoload": {
"psr-4": {
"ILAB_Illuminate\\Support\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.6-dev"
}
},
"suggest": {
"illuminate/filesystem": "Required to use the composer class (5.2.*).",
"symfony/process": "Required to use the composer class (~3.3).",
"symfony/var-dumper": "Required to use the dd function (~3.3)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"repositories": [{
"type": "composer",
"url": "https://packages.interfacelab.io"
}]
}