-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (71 loc) · 1.39 KB
/
composer.json
File metadata and controls
74 lines (71 loc) · 1.39 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
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
{
"name": "egifford/phpbu-installer",
"type": "project",
"description": "Helper scripts for installing and running PHPBU.",
"keywords": [],
"homepage": "https://github.com/egifford/phpbu-installer",
"license": [
"MIT"
],
"authors": [
{
"name": "Corexcel",
"homepage": "https://www.corexcel.com",
"role": "Owner",
"email": "learn@corexcel.com"
},
{
"name": "Ed Gifford",
"homepage": "https://www.corexcel.com",
"role": "Developer",
"email": "egifford@corexcel.com"
}
],
"require": {
"php": ">=8.3",
"phpbu/phpbu": "6.0.24",
"aws/aws-sdk-php": "3.325.7",
"phpmailer/phpmailer": "6.9.2",
"vlucas/phpdotenv": "5.6.1",
"sebastianfeldmann/cli": "dev-escape-windows as 3.4.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
}
},
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/egifford/cli"
}
],
"config": {
"allow-plugins": {
},
"platform": {
"php": "8.3"
},
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"extra": {
},
"bin": [
]
}