-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 887 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
{
"name": "pascalvgemert/laravel-lookupable",
"version": "0.1.3",
"description": "Lookupable Trait for Laravel eloquent models for quick and efficient table lookups.",
"keywords": [
"pascalvgemert",
"laravel-lookupable",
"lookup",
"lookup tables"
],
"homepage": "https://github.com/pascalvgemert/laravel-lookupable",
"license": "MIT",
"authors": [
{
"name": "Pascal van Gemert",
"email": "[email protected]",
"homepage": "https://www.pascalvangemert.nl",
"role": "Developer"
}
],
"require": {
"php" : ">=7.0",
"illuminate/database": "5.5.x|5.6.x|5.7.x|5.8.x"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Lookupable\\": "src"
}
},
"autoload-dev": {
"psr-4": {}
}
}