-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1 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
44
45
46
47
48
49
{
"name": "linkorb/shipyard-cli",
"description": "Shipyard Symfony CLI",
"homepage": "http://www.github.com/linkorb/shipyard-cli",
"keywords": [
"php",
"shipyard",
"cli"
],
"authors": [
{
"name": "Kostiantyn Kovela",
"email": "[email protected]",
"role": "Development"
},
{
"name": "Joost Faassen",
"email": "[email protected]",
"role": "Development"
}
],
"require": {
"symfony/yaml": "^6.3",
"symfony/console": "^6.3",
"spatie/docker": "^1.11",
"spatie/ssh": "^1.9",
"twig/twig": "^3.0",
"justinrainbow/json-schema": "^5.2",
"linkorb/sops-php": "^1.0",
"symfony/filesystem": "^6.3",
"symfony/process": "^6.3",
"symfony/serializer": "^6.3",
"symfony/property-access": "^6.3"
},
"autoload": {
"psr-4": {
"LinkORB\\Shipyard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LinkORB\\Tests\\Shipyard\\": "tests/"
}
},
"bin": [
"bin/shipyard"
],
"license": "MIT"
}