-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
58 lines (58 loc) · 1.72 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": "luezoid/laravel-core",
"description": "A feature rich Laravel package which provides fast & flexible way to quickly build powerful RESTful APIs. Various other features like queries & filters over nested complex relationships between models can be done on the go using this package. Read the docs for more info.",
"keywords": [
"laravel",
"laravel-package",
"luezoid",
"luezoid-laravel-core",
"api"
],
"license": "MIT",
"support": {
"issues": "https://github.com/luezoidtechnologies/laravel-core/issues",
"source": "https://github.com/luezoidtechnologies/laravel-core"
},
"authors": [
{
"name": "Keshav Ashta",
"email": "keshav@luezoid.com"
},
{
"name": "Abhishek Mishra",
"email": "abhishek@luezoid.com"
},
{
"name": "Manoj Singh Rawat",
"email": "manoj@luezoid.com"
}
],
"require": {
"illuminate/support": ">=5.1",
"intervention/image": "^2.4",
"aws/aws-sdk-php-laravel": "^3.1",
"ext-json": "*"
},
"require-dev": {
"laravel/framework": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"orchestra/testbench": "^8.5",
"phpunit/phpunit": "^10.1",
"ext-gd": "*",
"ext-sqlite3": "*"
},
"autoload": {
"psr-4": {
"Luezoid\\Laravelcore\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Luezoid\\Laravelcore\\CoreServiceProvider"
],
"aliases": {
"luezoid-laravel-core": "Luezoid\\Laravelcore\\Facades\\Laravelcore"
}
}
}
}