-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "arcanedev/laravel-backup",
"description": "A Laravel package to backup your application",
"keywords": ["arcanedev", "laravel", "backup", "database"],
"homepage": "https://github.com/ARCANEDEV/LaravelBackup",
"authors": [
{
"name": "ARCANEDEV",
"email": "[email protected]",
"homepage": "https://github.com/arcanedev-maroc",
"role": "Developer"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"ext-zip": "*",
"arcanedev/support": "^8.0",
"league/flysystem": "^1.1",
"symfony/process": "^4.2|^5.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.155",
"laravel/framework": "^v8.40",
"laravel/slack-notification-channel": "^2.3",
"league/flysystem-aws-s3-v3": "^1.0.1",
"mockery/mockery": "^1.4.2",
"orchestra/testbench-core": "^6.4",
"phpunit/phpunit": "^9.3.3"
},
"autoload": {
"psr-4": {
"Arcanedev\\LaravelBackup\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanedev\\LaravelBackup\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:dox": "phpunit --testdox --colors=always",
"test:cov": "phpunit --coverage-html coverage"
},
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
},
"laravel": {
"providers": [
"Arcanedev\\LaravelBackup\\BackupServiceProvider",
"Arcanedev\\LaravelBackup\\Providers\\DeferredServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}