-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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
{
"name": "mallardduck/laravel-traits",
"description": "A collection of useful Laravel snippets in the form of easy to use traits.",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": [
"laravel",
"laravel traits",
"traits",
"console",
"controller"
],
"authors": [
{
"name": "Dan Pock",
"email": "[email protected]",
"homepage": "https://danpock.me",
"role": "Developer"
}
],
"homepage": "https://github.com/mallardduck/laravel-traits",
"require": {
"php": "^8.0.0",
"illuminate/console": "^9.0 || ^10.0 || ^11.0",
"illuminate/database": "^9.0 || 10.0 || ^11.0",
"illuminate/pagination": "^9.0 || ^10.0 || ^11.0",
"illuminate/view": "^9.0 || ^10.0 || ^11.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MallardDuck\\LaravelTraits\\": "src/"
}
},
"config": {
"sort-packages": true
}
}