-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 931 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
37
38
39
{
"name": "heyday/beam",
"description": "A utility for deploying files to servers",
"minimum-stability": "stable",
"config": {
"platform": {
"php": "8.2"
}
},
"provide": {
"ext-ssh2": "*"
},
"require": {
"php": ">=8",
"symfony/console": "^6.3.4",
"symfony/process": "^6.3.4",
"symfony/options-resolver": "^6.3.0",
"symfony/config": "^6.3.2",
"herzult/php-ssh": "~1.0",
"stecman/symfony-console-completion": "^0.12.2",
"seld/jsonlint": "^1.10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mikey179/vfsstream": "^1.6.11",
"symfony/finder": "^5.4.8"
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text"
},
"autoload": {
"psr-4": {
"Heyday\\Beam\\": "src/"
}
},
"bin": [
"bin/beam"
]
}