-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "watheqalshowaiter/backup-tables",
"description": "Backup single or multiple database tables with ease.",
"keywords": [
"WatheqAlshowaiter",
"Watheq Alshowaiter",
"laravel",
"backup tables",
"mysql",
"mariadb",
"php",
"sql",
"model",
"sqlite",
"postgresql",
"laravel",
"sqlserver",
"php",
"package",
"php-package",
"yemenopensource",
"yemen_open_source"
],
"homepage": "https://github.com/watheqalshowaiter/backup-tables",
"license": "MIT",
"authors": [
{
"name": "Watheq Alshowaiter",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Omar Alalwi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"illuminate/contracts": "^11.0||^10.0||^9.0||^8.0||^7.0||^6.0||^5.0"
},
"require-dev": {
"nunomaduro/collision": "^8.1.1||^7.10.0||^6.0||^5.0||^4.0||^3.2",
"orchestra/testbench": "^9.0.0||^8.22.0||^7.0||^6.0||^5.0||^4.0"
},
"autoload": {
"psr-4": {
"WatheqAlshowaiter\\BackupTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WatheqAlshowaiter\\BackupTables\\Tests\\": "tests/"
}
},
"scripts": {
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"WatheqAlshowaiter\\BackupTables\\BackupTablesServiceProvider"
],
"aliases": {
"BackupTables": "WatheqAlshowaiter\\BackupTables\\BackupTables"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}