-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgo.mod
26 lines (23 loc) · 792 Bytes
/
go.mod
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
module docker-symfony
go 1.23.4
require (
github.com/joho/godotenv v1.5.1
github.com/sethvargo/go-password v0.3.1
github.com/symfony-cli/console v1.1.5
github.com/symfony-cli/terminal v1.0.7
golang.org/x/crypto v0.31.0
)
require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/rs/zerolog v1.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)