-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
46 lines (46 loc) · 1.35 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
{
"name": "cachewerk/bref-laravel-bridge",
"description": "An advanced Laravel integration for Bref, including Octane support.",
"license": "MIT",
"keywords": [
"laravel",
"bref"
],
"homepage": "https://github.com/cachewerk/bref-laravel-bridge",
"require": {
"php": "^8.0",
"aws/aws-sdk-php": "^3.222",
"bref/bref": "^1.5",
"illuminate/container": "^8.0 || ^9.0 || ^10.0",
"illuminate/contracts": "^8.0 || ^9.0 || ^10.0",
"illuminate/http": "^8.0 || ^9.0 || ^10.0",
"illuminate/queue": "^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
"laravel/octane": "^1.2",
"monolog/monolog": "^2.0 || ^3.0",
"riverline/multipart-parser": "^2.0"
},
"require-dev": {
"nunomaduro/larastan": "^2.2",
"orchestra/testbench": "^7.13",
"php-parallel-lint/php-parallel-lint": "^1.3",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"CacheWerk\\BrefLaravelBridge\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"CacheWerk\\BrefLaravelBridge\\BrefServiceProvider"
]
}
}
}