mirror of
https://github.com/goravel/goravel.git
synced 2025-09-26 20:51:19 +08:00
Upgrade v1.10.0 (#77)
This commit is contained in:
@@ -7,6 +7,7 @@ APP_HOST=127.0.0.1
|
||||
APP_PORT=3000
|
||||
|
||||
GRPC_HOST=
|
||||
GRPC_PORT=
|
||||
|
||||
JWT_SECRET=
|
||||
|
||||
|
27
README.md
27
README.md
@@ -37,6 +37,15 @@ value := facades.Cache.Get("goravel", "default")
|
||||
err := facades.Queue.Job(&jobs.Test{}, []queue.Arg{}).Dispatch()
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
Online documentation [https://www.goravel.dev](https://www.goravel.dev)
|
||||
|
||||
Example [https://github.com/goravel/example](https://github.com/goravel/example)
|
||||
|
||||
> To optimize the documentation, please submit a PR to the documentation
|
||||
> repository [https://github.com/goravel/docs](https://github.com/goravel/docs)
|
||||
|
||||
## Main Function
|
||||
|
||||
- [x] Config
|
||||
@@ -56,24 +65,12 @@ err := facades.Queue.Job(&jobs.Test{}, []queue.Arg{}).Dispatch()
|
||||
- [x] Mail
|
||||
- [x] Validation
|
||||
- [x] Mock
|
||||
- [x] Hash
|
||||
- [x] Crypt
|
||||
|
||||
## Roadmap
|
||||
|
||||
- [ ] Hash
|
||||
- [ ] Crypt
|
||||
- [ ] Support Websocket
|
||||
- [ ] Broadcasting
|
||||
- [ ] Delay Queue
|
||||
- [ ] Queue supports DB driver
|
||||
- [ ] Notifications
|
||||
- [ ] Optimize unit tests
|
||||
|
||||
## Documentation
|
||||
|
||||
Online documentation [https://www.goravel.dev](https://www.goravel.dev)
|
||||
|
||||
> To optimize the documentation, please submit a PR to the documentation
|
||||
> repository [https://github.com/goravel/docs](https://github.com/goravel/docs)
|
||||
[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
||||
|
||||
## Contributors
|
||||
|
||||
|
25
README_zh.md
25
README_zh.md
@@ -36,6 +36,14 @@ value := facades.Cache.Get("goravel", "default")
|
||||
err := facades.Queue.Job(&jobs.Test{}, []queue.Arg{}).Dispatch()
|
||||
```
|
||||
|
||||
## 文档
|
||||
|
||||
在线文档 [https://www.goravel.dev/zh](https://www.goravel.dev/zh)
|
||||
|
||||
示例 [https://github.com/goravel/example](https://github.com/goravel/example)
|
||||
|
||||
> 优化文档,请提交 PR 至文档仓库 [https://github.com/goravel/docs](https://github.com/goravel/docs)
|
||||
|
||||
## 主要功能
|
||||
|
||||
- [x] 自定义配置
|
||||
@@ -55,23 +63,12 @@ err := facades.Queue.Job(&jobs.Test{}, []queue.Arg{}).Dispatch()
|
||||
- [x] 邮件
|
||||
- [x] 表单验证
|
||||
- [x] Mock
|
||||
- [x] Hash
|
||||
- [x] Crypt
|
||||
|
||||
## 路线图
|
||||
|
||||
- [ ] Hash
|
||||
- [ ] Crypt
|
||||
- [ ] Websocket 支持
|
||||
- [ ] 广播系统
|
||||
- [ ] 延迟队列
|
||||
- [ ] 队列支持 DB 驱动
|
||||
- [ ] 消息通知
|
||||
- [ ] 完善单元测试
|
||||
|
||||
## 文档
|
||||
|
||||
在线文档 [https://www.goravel.dev/zh](https://www.goravel.dev/zh)
|
||||
|
||||
> 优化文档,请提交 PR 至文档仓库 [https://github.com/goravel/docs](https://github.com/goravel/docs)
|
||||
[查看详情](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
||||
|
||||
## 贡献者
|
||||
|
||||
|
19
go.mod
19
go.mod
@@ -3,7 +3,7 @@ module goravel
|
||||
go 1.18
|
||||
|
||||
require (
|
||||
github.com/goravel/framework v1.9.1
|
||||
github.com/goravel/framework v1.10.0
|
||||
google.golang.org/grpc v1.50.1
|
||||
)
|
||||
|
||||
@@ -38,7 +38,8 @@ require (
|
||||
github.com/aws/aws-sdk-go-v2/service/s3 v1.29.3 // indirect
|
||||
github.com/aws/smithy-go v1.13.4 // indirect
|
||||
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
|
||||
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
||||
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||
github.com/chzyer/readline v1.5.1 // indirect
|
||||
github.com/clbanning/mxj v1.8.4 // indirect
|
||||
github.com/containerd/continuity v0.3.0 // indirect
|
||||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
|
||||
@@ -48,6 +49,7 @@ require (
|
||||
github.com/docker/docker v20.10.22+incompatible // indirect
|
||||
github.com/docker/go-connections v0.4.0 // indirect
|
||||
github.com/docker/go-units v0.5.0 // indirect
|
||||
github.com/dustin/go-humanize v1.0.1 // indirect
|
||||
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
||||
github.com/gin-contrib/sse v0.1.0 // indirect
|
||||
github.com/gin-gonic/gin v1.8.2 // indirect
|
||||
@@ -92,18 +94,22 @@ require (
|
||||
github.com/jinzhu/inflection v1.0.0 // indirect
|
||||
github.com/jinzhu/now v1.1.5 // indirect
|
||||
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
||||
github.com/jmoiron/sqlx v1.3.5 // indirect
|
||||
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible // indirect
|
||||
github.com/json-iterator/go v1.1.12 // indirect
|
||||
github.com/kelseyhightower/envconfig v1.4.0 // indirect
|
||||
github.com/klauspost/compress v1.13.6 // indirect
|
||||
github.com/klauspost/compress v1.15.15 // indirect
|
||||
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
|
||||
github.com/leodido/go-urn v1.2.1 // indirect
|
||||
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
||||
github.com/lib/pq v1.10.2 // indirect
|
||||
github.com/magiconair/properties v1.8.5 // indirect
|
||||
github.com/manifoldco/promptui v0.9.0 // indirect
|
||||
github.com/mattn/go-isatty v0.0.17 // indirect
|
||||
github.com/mattn/go-sqlite3 v1.14.15 // indirect
|
||||
github.com/microsoft/go-mssqldb v0.19.0 // indirect
|
||||
github.com/minio/md5-simd v1.1.2 // indirect
|
||||
github.com/minio/minio-go/v7 v7.0.49 // indirect
|
||||
github.com/minio/sha256-simd v1.0.0 // indirect
|
||||
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
||||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
|
||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
||||
@@ -122,6 +128,7 @@ require (
|
||||
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 // indirect
|
||||
github.com/robfig/cron/v3 v3.0.1 // indirect
|
||||
github.com/rs/cors v1.8.3-0.20221003140808-fcebdb403f4d // indirect
|
||||
github.com/rs/xid v1.4.0 // indirect
|
||||
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
||||
github.com/sirupsen/logrus v1.9.0 // indirect
|
||||
github.com/spf13/afero v1.6.0 // indirect
|
||||
@@ -150,7 +157,7 @@ require (
|
||||
go.uber.org/atomic v1.10.0 // indirect
|
||||
golang.org/x/crypto v0.6.0 // indirect
|
||||
golang.org/x/mod v0.7.0 // indirect
|
||||
golang.org/x/net v0.6.0 // indirect
|
||||
golang.org/x/net v0.7.0 // indirect
|
||||
golang.org/x/oauth2 v0.1.0 // indirect
|
||||
golang.org/x/sync v0.1.0 // indirect
|
||||
golang.org/x/sys v0.5.0 // indirect
|
||||
@@ -161,7 +168,7 @@ require (
|
||||
google.golang.org/appengine v1.6.7 // indirect
|
||||
google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd // indirect
|
||||
google.golang.org/protobuf v1.28.1 // indirect
|
||||
gopkg.in/ini.v1 v1.64.0 // indirect
|
||||
gopkg.in/ini.v1 v1.67.0 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
gorm.io/driver/mysql v1.4.5 // indirect
|
||||
|
Reference in New Issue
Block a user