-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 918 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 918 Bytes
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
{
"name": "akeeba/releasemaker",
"description": "Automates the deployment of software with Akeeba Release System",
"minimum-stability": "stable",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nicholas K. Dionysopoulos",
"homepage": "https://www.akeeba.com",
"role": "Lead Developer"
}
],
"require": {
"php": "^8.3.0",
"ext-json": "*",
"ext-curl": "*",
"ext-zip": "*",
"akeeba/s3": "^2.0.0",
"bunnycdn/storage": "^3.4.0",
"colinodell/json5": "^2.2.0",
"composer/ca-bundle": "^1.2",
"league/commonmark": "^2.6.0",
"mnapoli/silly": "^1.6",
"symfony/yaml": "^5.2.0"
},
"require-dev": {
"rector/rector": "^2.0"
},
"suggest": {
"ext-ssh2": "*",
"ext-ftp": "*"
},
"autoload": {
"psr-4": {
"Akeeba\\ReleaseMaker\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"github-protocols": [
"https"
]
}
}