-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 915 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
{
"name": "eastwest/eloquent-to-raw-sql",
"description": "This is my package EloquentToRawSql",
"keywords": [
"eastwest",
"laravel",
"eloquent-to-raw-sql"
],
"homepage": "https://github.com/jannejava/eloquent-to-raw-sql",
"license": "MIT",
"authors": [
{
"name": "Jan Östlund",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/contracts": "^5.7|^5.8|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Eastwest\\EloquentToRawSql\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Eastwest\\EloquentToRawSql\\EloquentToRawSqlServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}