-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.29 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
53
54
55
56
57
58
{
"name": "langleyfoxall/helpers-laravel",
"description": "A collection of useful classes to help making Laravel applications easier",
"minimum-stability": "dev",
"type": "library",
"license": "LGPL-3.0-only",
"keywords": [
"helpers",
"php",
"laravel"
],
"homepage": "https://github.com/LFSoftware/helpers-laravel",
"support": {
"issues": "https://github.com/LFSoftware/helpers-laravel/issues",
"source": "https://github.com/LFSoftware/helpers-laravel"
},
"authors": [
{
"name": "Dexter Marks-Barber",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Jordan Hall",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Jared Wheatley",
"email": "[email protected]",
"role": "Reviewer"
}
],
"require": {
"php": "^7.3||^8.0",
"illuminate/support": ">=5.0",
"illuminate/database": ">=5.0",
"illuminate/http": ">=5.0"
},
"require-dev": {
"orchestra/testbench": "^5.17.1"
},
"autoload": {
"psr-4": {
"LangleyFoxall\\": "src/LangleyFoxall/"
}
},
"autoload-dev": {
"psr-4": {
"LangleyFoxall\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}