-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "bangnokia/laravel-backup-telegram",
"description": "Upload your backup file to telegram channel for spatie/laravel-backup",
"type": "library",
"license": "MIT",
"require": {
"php": "8.*",
"illuminate/support": "^8|^9|^10",
"spatie/laravel-backup": "^8.1"
},
"require-dev": {
"orchestra/testbench": "^7.5"
},
"autoload": {
"psr-4": {
"Bangnokia\\LaravelBackupTelegram\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bangnokia\\LaravelBackupTelegram\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Nguyen Viet",
"email": "bangnokia@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Bangnokia\\LaravelBackupTelegram\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
}
}