-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
31 lines (30 loc) · 1.01 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
{
"name": "ryancwalsh/stack-exchange-backup-laravel",
"description": "My aim is to back up all of my questions and answers and anything else valuable in my accounts across all of the StackExchange sites (StackOverflow, SuperUser, https://apple.stackexchange.com/, https://askubuntu.com/, etc).",
"type": "package",
"version": "2.0.8",
"require": {
"guzzlehttp/guzzle": "^7.0.1",
"php": "^7.3",
"laravel/framework": "8.75.0",
"laravel/helpers": "^1.1",
"league/flysystem-aws-s3-v3": "^1.0",
"spatie/laravel-backup": "^6.4",
"spatie/guzzle-rate-limiter-middleware": "^1.0",
"league/flysystem": "1.1.4"
},
"autoload": {
"psr-4": {
"ryancwalsh\\StackExchangeBackupLaravel\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"ryancwalsh\\StackExchangeBackupLaravel\\ExportStackExchangeServiceProvider"
],
"aliases": {
}
}
}
}