forked from dg/ftp-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.01 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
{
"name": "arxeiss/ftp-deployment",
"type": "project",
"homepage": "https://github.com/arxeiss/ftp-deployment",
"description": "A tool for automated deployment of web applications to an FTP server.",
"keywords": ["deployment", "ftp", "ssh"],
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
},
{
"name": "Pavel Kutáč",
"homepage": "https://www.kutac.cz"
}
],
"require": {
"php": ">=8.0",
"ext-zlib": "*",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"ext-curl": "*",
"nette/tester": "^2.0",
"phpstan/phpstan": "^0.12"
},
"suggest": {
"ext-ftp": "to connect to ftp:// server",
"ext-openssl": "to connect to ftps:// server and preprocess CSS files",
"ext-ssh2": "to connect to sftp:// server",
"ext-json": "to preprocess CSS files via online service"
},
"autoload": {
"classmap": ["src/"]
},
"bin": ["deployment"],
"extra": {
"branch-alias": {
"dev-master": "3.6-dev"
}
}
}