-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.3 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
{
"name": "boxybird/waffle",
"description": "Tools built using Illuminate components (https://github.com/illuminate). Inspired by https://github.com/mattstauffer/Torch",
"license": "MIT",
"keywords": [
"wordpress",
"illuminate",
"laravel",
"plugin"
],
"authors": [
{
"name": "Andrew Rhyand",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BoxyBird\\Waffle\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"guzzlehttp/guzzle": "^6.5.5 || ^7.0.1",
"illuminate/container": "^8.83",
"illuminate/support": "^8.83",
"illuminate/database": "^8.83",
"illuminate/translation": "^8.83",
"illuminate/validation": "^8.83",
"illuminate/config": "^8.83",
"illuminate/http": "^8.83",
"illuminate/cache": "^8.83",
"illuminate/filesystem": "^8.83",
"illuminate/console": "^8.83",
"illuminate/encryption": "^8.83",
"illuminate/events": "^8.83",
"illuminate/queue": "^8.83",
"illuminate/contracts": "^8.83",
"illuminate/pagination": "^8.83",
"illuminate/redis": "^8.83",
"predis/predis": "^1.1",
"filp/whoops": "^2.14",
"league/flysystem": "^1.1",
"league/flysystem-aws-s3-v3": "^1.0"
}
}