-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathcomposer.json
36 lines (36 loc) · 857 Bytes
/
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
{
"name": "dg/ftp-deployment",
"type": "project",
"description": "A tool for automated deployment of web applications to an FTP server.",
"keywords": ["deployment", "ftp", "ssh"],
"homepage": "https://github.com/dg/ftp-deployment",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
}
],
"require": {
"php": ">=7.1",
"ext-zlib": "*"
},
"require-dev": {
"nette/tester": "~1.3"
},
"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.0-dev"
}
}
}