-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.04 KB
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
{
"name": "bsaqqa/backfire",
"description": "Is a backup Database CLI for PHP",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Baraa AL-Saqqa",
"email": "baraa.sk@gmail.com",
"homepage": "https://github.com/bsaqqa"
}
],
"require": {
"php": ">=8.0",
"adbario/php-dot-notation": "^3.2",
"ext-zip": "*"
},
"require-dev": {
"symfony/var-dumper": "^6.2"
},
"bin": [
"backfire"
],
"autoload": {
"psr-4": {
"BSaqqa\\Backfire\\": "src/"
},
"files": [
"helpers/helpers.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"optimize-autoloader": true,
"scripts": {
"post-install-cmd": [
"chmod +x backfire"
],
"post-update-cmd": [
"chmod +x backfire"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}