go.mod 517 B

123456789101112131415161718192021
  1. module github.com/dunglas/frankenphp
  2. go 1.21
  3. retract v1.0.0-rc.1 // Human error
  4. require (
  5. github.com/stretchr/testify v1.8.4
  6. go.uber.org/zap v1.26.0
  7. golang.org/x/net v0.19.0
  8. )
  9. require (
  10. github.com/davecgh/go-spew v1.1.1 // indirect
  11. github.com/kr/pretty v0.2.1 // indirect
  12. github.com/pmezard/go-difflib v1.0.0 // indirect
  13. go.uber.org/multierr v1.11.0 // indirect
  14. golang.org/x/text v0.14.0 // indirect
  15. gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
  16. gopkg.in/yaml.v3 v3.0.1 // indirect
  17. )