forked from guanguans/favorite-link
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME-BAK.md
7061 lines (7055 loc) · 695 KB
/
README-BAK.md
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# favorite link
收集喜欢的网址
[:heart: RSS 订阅](https://rsshub.app/github/file/guanguans/favorite-link/master/README.md) | <img src="https://kz.sync163.com/static/img/logo.f071e0ef.png" width="20" style="width: 20px;height: 20px;border-radius: 5px;"> [快知 app 主题订阅](https://kz.sync163.com/web/topic/vqNzr2P81R6Yk?uid=zVQMRKgkGRP0A)
[![Build Status](https://travis-ci.org/guanguans/favorite-link.svg?branch=master)](https://travis-ci.org/guanguans/favorite-link)
## License
[GNU General Public License v3.0](LICENSE)
### January 28, 2021
- [juju/errors: 常见的juju错误及其注释功能。基于juju/errgo](https://github.com/juju/errors)
- [oxtoacart/bpool: Go 的缓冲区/字节池](https://github.com/oxtoacart/bpool)
- [alitto/pond: 用Go编写的简约高效的goroutine工作池](https://github.com/alitto/pond)
- [PrimitiveSocial/openapi-initializer: 直接使用Laravel命令构建OpenAPI规范文件](https://github.com/PrimitiveSocial/openapi-initializer)
### January 27, 2021
- [hashicorp/nomad: Nomad是一个易于使用、灵活且性能优异的工作负载编排器,它可以部署微服务、批处理、容器化和非容器化应用程序的混合。](https://github.com/hashicorp/nomad)
- [bsm/redislock: 使用 Redis 简化分布式锁定实现](https://github.com/bsm/redislock)
- [spatie/interactive-slack-notification-channel: 在 Laravel 应用程序中发送交互式 Slack 通知](https://github.com/spatie/interactive-slack-notification-channel)
- [qiangxue/go-rest-api: 遵循 SOLID 原则和 Clean 架构的惯用 Go REST API 入门工具包(样板文件)](https://github.com/qiangxue/go-rest-api)
- [cihub/seelog: Seelog是一个功能强大且易于学习的日志框架,它提供了灵活的调度、过滤和格式化日志消息的功能。](https://github.com/cihub/seelog)
- [envoyproxy/ratelimit: Go/gRPC服务旨在支持不同类型应用程序的通用速率限制方案。](https://github.com/envoyproxy/ratelimit)
- [willnewii/qiniuClient: 云存储管理客户端。支持七牛云、腾讯云、青云、阿里云、又拍云、亚马逊S3、京东云,仿文件夹管理、图片预览、拖拽上传、文件夹上传、同步、批量导出URL等功能](https://github.com/willnewii/qiniuClient)
- [uniplaces/carbon: 基于PHP的Carbon库的Time的简单扩展。](https://github.com/uniplaces/carbon)
- [pengzhile/pqp: 一个高性能的多进程队列侦听器。](https://github.com/pengzhile/pqp)
### January 26, 2021
- [m1guelpf/laravel-fastlogin: 允许用户使用 FaceID/TouchID 登录](https://github.com/m1guelpf/laravel-fastlogin)
- [anmitsu/goful: Goful是一个由Go实现的CUI文件管理器。](https://github.com/anmitsu/goful)
- [php-casbin/database-adapter: 数据库适配器为 PHP-Casbin,Casbin 是一个强大而高效的开源访问控制库。](https://github.com/php-casbin/database-adapter)
- [Xhofe/alist: 一个阿里云盘列表程序](https://github.com/Xhofe/alist)
- [orcaman/concurrent-map: a thread-safe concurrent map for go](https://github.com/orcaman/concurrent-map)
- [mpociot/vat-calculator: 处理所有与欧盟财务安全标准税收/增值税法规相关的棘手问题,以应有的方式。可与 Laravel 5/收银员一起使用ー或单独使用。](https://github.com/mpociot/vat-calculator)
- [patrickbussmann/oauth2-apple: 使用Apple Provider登录OAuth 2.0客户端](https://github.com/patrickbussmann/oauth2-apple)
### January 25, 2021
- [spatie/laravel-package-tools: 用于创建Laravel软件包的工具](https://github.com/spatie/laravel-package-tools)
- [cilium/cilium: Cilium是开源软件,用于提供并透明地保护应用程序工作负载(例如应用程序容器或进程)之间的网络连接和负载平衡。](https://github.com/cilium/cilium)
- [google/gopacket: 为Go提供数据包处理功能](https://github.com/google/gopacket)
### January 23, 2021
- [a54552239/pearProjectApi: 项目管理系统后端接口](https://github.com/a54552239/pearProjectApi)
- [Gemini-D/php-mysql-replication: MySQL复制协议的纯PHP实现。这允许您接收插入、更新、删除等事件及其数据和原始SQL查询。](https://github.com/Gemini-D/php-mysql-replication)
- [go-co-op/gocron: 轻松流畅的Go cron调度。](https://github.com/go-co-op/gocron)
- [speps/go-hashids: Go (golang) implementation of http://www.hashids.org](https://github.com/speps/go-hashids)
- [gohouse/gorose: GoRose(go orm), a mini database ORM for golang, which inspired by the famous php framwork laravle's eloquent.](https://github.com/gohouse/gorose)
### January 22, 2021
- [naiba/nezha: 哪吒面板 可能是最优秀的探针了](https://github.com/naiba/nezha)
- [reviewdog/reviewdog: 自动代码审查工具与任何代码分析工具集成](https://github.com/reviewdog/reviewdog)
- [gliderlabs/registrator: 带有可插拔适配器的 Docker 服务注册表桥接](https://github.com/gliderlabs/registrator)
- [uber-go/multierr: 将一个或多个 Go 错误组合在一起](https://github.com/uber-go/multierr)
- [elliotchance/redismock: 在 Go 中的单元测试中使用 Mocking Redis。](https://github.com/elliotchance/redismock)
- [tbreuss/yii2-inertia: About The Yii 2 server-side adapter for Inertia.js.](https://github.com/tbreuss/yii2-inertia)
- [minio/minio: 高性能Kubernetes本机对象存储](https://github.com/minio/minio)
- [C4o/FBI-Analyzer: 插件化的准实时日志分析系统。](https://github.com/C4o/FBI-Analyzer)
### January 21, 2021
- [guanguans/id-validator: 中国身份证号验证、获取身份证号信息、升级 15 位身份证号为 18 位、伪造符合校验的身份证号。](https://github.com/guanguans/id-validator)
- [Shopify/toxiproxy: 一个TCP代理,可以模拟网络和系统状况,以进行混乱和弹性测试](https://github.com/Shopify/toxiproxy)
- [mqycn/huile8: 英语差等生必备的 vscode 插件,解决 单词不会读、单词不认识的痛点](https://github.com/mqycn/huile8)
- [spatie/laravel-failed-job-monitor: 当排队的作业失败时获得通知](https://github.com/spatie/laravel-failed-job-monitor)
- [PhilippC/keepass2android: Android密码管理应用程序](https://github.com/PhilippC/keepass2android)
### January 20, 2021
- [michaelpetri/typed-input: symfony输入的类型安全输入包装器](https://github.com/michaelpetri/typed-input)
- [ipodtouchdude/iOS-2-M1: 这会将iOS应用程序转换为Apple M1(silicon)应用程序。](https://github.com/ipodtouchdude/iOS-2-M1)
- [rancher/k3d: 在 Docker 运行 Rancher 实验室 k3的小帮手](https://github.com/rancher/k3d)
- [EddieIvan01/iox: 端口转发和内部网代理工具](https://github.com/EddieIvan01/iox)
- [wind-framework/wind-framework: 基于 Workerman 和 Amphp 的纯 PHP 协同开发框架。](https://github.com/wind-framework/wind-framework)
- [google/blockly: 基于web的可视化编程编辑器。](https://github.com/google/blockly)
- [brianvoe/gofakeit: 用go编写的随机伪数据发生器](https://github.com/brianvoe/gofakeit)
- [AzimoLabs/apple-sign-in-php-sdk: 使用 PHP 库验证和验证 Apple IdentityToken,并验证具有 Apple ID 的用户。](https://github.com/AzimoLabs/apple-sign-in-php-sdk)
- [airplayx/gormat: Golang 方便的转换器支持数据库到 Struct,SQL 到 Struct,JSON 到 Struct。](https://github.com/airplayx/gormat)
### January 19, 2021
- [mochat-cloud/mochat: 基于企业微信的开源应用开发框架&引擎,也是一套通用的企业私域流量管理系统!](https://github.com/mochat-cloud/mochat)
- [StackExchange/dnscontrol: 从简单的 DSL 将您的 DNS 同步到多个提供程序](https://github.com/StackExchange/dnscontrol)
- [ramsey/uuid-doctrine: 允许使用 ramsey/UUID 作为 Doctrine 字段类型。](https://github.com/ramsey/uuid-doctrine)
- [joelbutcher/socialstream: 一个用于 Laravel Jetstream 的简单 Socialite 实现。](https://github.com/joelbutcher/socialstream)
- [alxmsl/AppStoreClient: 用于验证 iTunes 购买收据的 AppStore 客户端](https://github.com/alxmsl/AppStoreClient)
- [klskeleton/OnlineCourseScript: 大学生网课刷课脚本,不定期更新!目前支持:超星学习通,智慧树](https://github.com/klskeleton/OnlineCourseScript)
### January 18, 2021
- [maglnet/ComposerRequireChecker: CLI工具,用于检查特定的编写器包是否使用不属于其直接编写器依赖项的导入符号](https://github.com/maglnet/ComposerRequireChecker)
- [juicedata/juicefs: JuiceFS 是构建在 Redis 和 S3之上的分布式 POSIX 文件系统。](https://github.com/juicedata/juicefs)
- [hasib32/rest-api-with-lumen: 用于Lumen微框架的Rest API样板。](https://github.com/hasib32/rest-api-with-lumen)
- [jqhph/laravel-softdeletes: Laravel softdeletes是一个用于替代Laravel内置软删除功能的扩展包,可以把软删数据存储到独立的数据表中,从而不影响原始表字段增加唯一索引,且可以起到提升性能的作用。](https://github.com/jqhph/laravel-softdeletes)
- [squirephp/squire: 静态Eloquent模型库,用于通用夹具数据。](https://github.com/squirephp/squire)
- [zu1k/tg-keyword-reply-bot: Telegram关键词自动回复机器人: 根据群组管理员设定的关键词或者正则规则,自动回复文字、图片、文件或者进行永久禁言、临时禁言、踢出等群管操作](https://github.com/zu1k/tg-keyword-reply-bot)
### January 15, 2021
- [scheb/2fa: Symfony 应用程序的双因素认证(bunde version ≥5)](https://github.com/scheb/2fa)
- [tonysm/turbo-laravel: 该软件包为您提供了一系列约定,以使Laravel的Hotwire发挥最大作用(受Turbo-rails gem启发)。](https://github.com/tonysm/turbo-laravel)
- [rancher/fleet: 管理大型Kubernetes集群](https://github.com/rancher/fleet)
- [asaskevich/govalidator: [Go]字符串、数字、切片和结构的验证程序和清理程序包](https://github.com/asaskevich/govalidator)
- [enlightn/enlightn: Laravel工具可提高应用程序的性能和安全性](https://github.com/enlightn/enlightn)
- [docker/libkv: 分布式键/值存储抽象库](https://github.com/docker/libkv)
- [ginuerzh/gost: GO Simple Tunnel-用golang编写的简单隧道](https://github.com/ginuerzh/gost)
- [loveorigami/yii2-notification-wrapper: Yii2通知包装器模块通过Growl、Noty、Toastr和更多库呈现来自会话flash(支持ajax、pjax等)的消息](https://github.com/loveorigami/yii2-notification-wrapper)
### January 14, 2021
- [ayuer/shanghai_house_knowledge: 2020年11月在上海买房经历总结出来的买房购房做的一些功课](https://github.com/ayuer/shanghai_house_knowledge)
- [analogic/lemanager: 简单的容器化 web 应用程序,用于管理、发放来自 Let’s Encrypt 证书颁发机构的证书(和电子邮件警报)。](https://github.com/analogic/lemanager)
- [ytake/Laravel-FluentLogger: 用于laravel的fluent logger(带有用于Fluentd的Monolog处理程序)](https://github.com/ytake/Laravel-FluentLogger)
- [luarocks/luarocks: Luarlocks 是 Lua 编程语言的包管理器。](https://github.com/luarocks/luarocks)
- [PhiloNL/artisan-remote: Artisan Remote是Laravel通过HTTP API与Artisan命令交互的软件包。](https://github.com/PhiloNL/artisan-remote)
- [carlosas/phpat: PHP架构测试-易于使用的PHP架构测试工具✔️](https://github.com/carlosas/phpat)
### January 13, 2021
- [src-d/hercules: 从Git存储库历史中获得高级见解。](https://github.com/src-d/hercules)
- [EZLippi/WebBench: Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。](https://github.com/EZLippi/WebBench)
- [rogchap/v8go: Execute JavaScript from Go](https://github.com/rogchap/v8go)
- [rogchap/v8go: 从Go执行JavaScript](https://github.com/rogchap/v8go)
- [pyroscope-io/pyroscope: 连续分析平台-找出代码中的瓶颈!](https://github.com/pyroscope-io/pyroscope)
### January 12, 2021
- [BurntSushi/xsv: 一个用Rust编写的快速CSV命令行工具包。](https://github.com/BurntSushi/xsv)
- [tal-tech/go-zero: gozero是一个用go编写的web和rpc框架。它的诞生是为了确保具有弹性设计的繁忙站点的稳定性。内置goctl极大地提高了开发效率](https://github.com/tal-tech/go-zero)
- [phly/keep-a-changelog: 以 Keep a Changelog 格式操作 CHANGELOG.md 文件的工具,包括标签和发布。](https://github.com/phly/keep-a-changelog)
- [go-ffmt/ffmt: Golang美化数据显示](https://github.com/go-ffmt/ffmt)
### January 11, 2021
- [spatie/nova-tags-field: 要在Nova应用程序中使用的标记字段](https://github.com/spatie/nova-tags-field)
- [zhaoolee/replace_readme_md_image: 将README.md中的图片替换为github地址的图片](https://github.com/zhaoolee/replace_readme_md_image)
- [Gregwar/Image: 处理图像的PHP库](https://github.com/Gregwar/Image)
- [roots/acorn: 支持关键Laravel组件的WordPress插件框架](https://github.com/roots/acorn)
- [XPoet/picx: 基于 GitHub API 搭建的图床神器,图片外链使用 jsDelivr 进行 CDN 加速,免下载安装,打开网站即可使用。免费、稳定、高效。](https://github.com/XPoet/picx)
- [mvdan/gofumpt: A stricter gofmt](https://github.com/mvdan/gofumpt)
### January 9, 2021
- [moby/buildkit: 并发、高效缓存和Dockerfile无关的生成器工具包](https://github.com/moby/buildkit)
- [spatie/laravel-model-status: 轻松地为模型添加状态](https://github.com/spatie/laravel-model-status)
- [chubbyphp/chubbyphp-framework: 基于PSR-15的微框架,还设置了最大的灵活性,同时最小化了各个组件以及框架的复杂性和易更换性。](https://github.com/chubbyphp/chubbyphp-framework)
### January 8, 2021
- [spatie/ray: 使用Ray进行调试以更快地解决问题](https://github.com/spatie/ray)
- [jsyzchen/pan: 百度网盘开放平台 Go SDK](https://github.com/jsyzchen/pan)
- [propelorm/Propel3: 高性能数据映射器ORM,具有用于RAD和现代PHP 7.2+的可选活动记录特征](https://github.com/propelorm/Propel3)
- [propelorm/Propel2: Propel2是一种用于现代PHP的开源高性能对象关系映射(ORM)](https://github.com/propelorm/Propel2)
- [staudenmeir/laravel-migration-views: 使用 SQL 视图迁移 Laravel 数据库](https://github.com/staudenmeir/laravel-migration-views)
- [mailru/easyjson: golang的快速JSON序列化程序。](https://github.com/mailru/easyjson)
### January 7, 2021
- [lowlighter/metrics: 一个图像生成器,包含20多个关于 GitHub 账户的指标,比如活动、社区、存储库、编码习惯、网站表现、音乐播放、星级主题等等,你可以把它们放到你的个人资料或其他地方!](https://github.com/lowlighter/metrics?utm_source=xinquji)
- [thunderbarca/Caesar: 一个全新的敏感文件发现工具](https://github.com/thunderbarca/Caesar)
- [saltbo/zpan: 一个基于云存储的网盘系统,用于自建私人网盘或企业网盘。](https://github.com/saltbo/zpan)
- [zigoo0/JSONBee: 易于使用的JSONP端点/有效负载可帮助绕过不同网站的内容安全策略(CSP)。](https://github.com/zigoo0/JSONBee)
- [ProxymanApp/Proxyman: 适用于macOS,iOS和Android的现代,令人愉快的HTTP调试代理](https://github.com/ProxymanApp/Proxyman)
- [coocood/freecache: Go的缓存库,GC开销为零。](https://github.com/coocood/freecache)
- [cheggaaa/pb: Golang控制台进度条](https://github.com/cheggaaa/pb)
- [bandwidth-throttle/token-bucket: 令牌桶算法在PHP中的实现。](https://github.com/bandwidth-throttle/token-bucket)
- [jeroenvisser101/LeakyBucket: PHP实现的漏桶算法。](https://github.com/jeroenvisser101/LeakyBucket)
### January 6, 2021
- [tychxn/jd-assistant: 京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能](https://github.com/tychxn/jd-assistant)
- [geohot/minikeyvalue: 在1000行以下的分布式键值存储器。用于 comma.ai 的生产](https://github.com/geohot/minikeyvalue)
- [vitozyf/lucky-draw: 年会抽奖程序](https://github.com/vitozyf/lucky-draw)
### January 5, 2021
- [nas5w/100-days-of-code-frontend: # 100天学习前端开发课程。](https://github.com/nas5w/100-days-of-code-frontend)
- [jaywcjlove/changelog-generator: 一个 GitHub Action,比较两个分支之间的提交差异](https://github.com/jaywcjlove/changelog-generator)
- [cweijan/vscode-mysql: 用于 Visual Studio 代码的 MySQL 客户端](https://github.com/cweijan/vscode-mysql)
- [mattermost/desktop: 适用于Windows、Mac和Linux的最重要桌面应用程序](https://github.com/mattermost/desktop)
- [shivammathur/homebrew-extensions: 🍻 Homebrew Tap for PHP extensions](https://github.com/shivammathur/homebrew-extensions)
- [radek-baczynski/zeebe-php-client](https://github.com/radek-baczynski/zeebe-php-client)
### January 4, 2021
- [cloudflare/cloudflare-php: Cloudflare v4 API的PHP库](https://github.com/cloudflare/cloudflare-php)
- [thecodingmachine/tdbm: 不需要配置的PHP ORM。 从数据库模型推导出对象模型。](https://github.com/thecodingmachine/tdbm)
- [thecodingmachine/discovery: 在 PHP 项目中发布和发现资产。](https://github.com/thecodingmachine/discovery)
- [xiaolai/spreadsheets-for-investors: 投资人必会知识 —— 电子表格简明进阶教程](https://github.com/xiaolai/spreadsheets-for-investors)
- [nasirkhan/laravel-starter: 一个类似 CMS 的模块化启动应用程序项目,使用 Laravel 8. x 构建。](https://github.com/nasirkhan/laravel-starter)
- [kokohuang/weapp-poem: 诗词墨客 - 最全中华古诗词小程序](https://github.com/kokohuang/weapp-poem)
- [AliyunContainerService/k8s-for-docker-desktop: About 为Docker Desktop for Mac/Windows开启Kubernetes和Istio](https://github.com/AliyunContainerService/k8s-for-docker-desktop)
- [FuckDoctors/rdm-builder: Redis Desktop Manager Builder](https://github.com/FuckDoctors/rdm-builder)
- [iPeng6/docsify-sidebar-collapse: 一个docsify插件,支持边栏目录展开和折叠](https://github.com/iPeng6/docsify-sidebar-collapse)
### December 31, 2020
- [waylybaye/XcodeCleaner-SwiftUI: 这个应用可以帮助你清除遗留以及废弃文件,从而极大的节省硬盘空间. 你可以每月或者每周运行一次进行清理。](https://github.com/waylybaye/XcodeCleaner-SwiftUI)
- [adonisjs/core: nodejs 版的 laravel 框架](https://github.com/adonisjs/core)
### December 30, 2020
- [go-pg/pg: 专注于PostgreSQL特性和性能的Golang ORM](https://github.com/go-pg/pg)
- [symfony/ux: Symfony的新JavaScript生态系统](https://github.com/symfony/ux)
- [zyedidia/micro: 一个现代化的、直观的基于终端的文本编辑器](https://github.com/zyedidia/micro)
- [whomwah/qlstephen: 一个QuickLook插件,允许您查看没有文件扩展名的纯文本文件](https://github.com/whomwah/qlstephen)
- [acodercat/function-call-principle: 这是一篇关于函数调用原理的文章,通过大量的示意图由浅入深分析了函数完整的生命周期。](https://github.com/acodercat/function-call-principle)
- [multiavatar/Multiavatar: 12 Billion Unique Multicultural Avatars](https://github.com/multiavatar/Multiavatar)
- [multiavatar/multiavatar-php: 12 Billion Unique Multicultural Avatars](https://github.com/multiavatar/multiavatar-php)
- [TNK-Studio/lazykube: ⎈ The lazier way to manage kubernetes.](https://github.com/TNK-Studio/lazykube)
- [ishandeveloper/github-wrapped: 回顾一下您作为个人对开源社区所做的所有贡献](https://github.com/ishandeveloper/github-wrapped)
### December 29, 2020
- [appleboy/gorush: 一个用Go(Golang)编写的推送通知服务器。](https://github.com/appleboy/gorush)
- [projectdiscovery/proxify: 瑞士军刀代理工具 HTTP/HTTPS 流量捕获、操作和重播。](https://github.com/projectdiscovery/proxify)
- [iammapping/wedding: 婚礼大屏互动,微信请柬一站式解决方案](https://github.com/iammapping/wedding)
- [A3h1nt/Grawler: 是一个用 PHP 编写的工具,它有一个网页界面,可以自动化使用 google dorks 的任务,剪切结果,并将它们存储在一个文件中。.](https://github.com/A3h1nt/Grawler)
- [ParryQiu/wxopenclub-wxapp-lessons: 60 节微信小程序开发视频教程配套源代码](https://github.com/ParryQiu/wxopenclub-wxapp-lessons)
- [dnote/dnote: 一个简单的程序员命令行笔记本](https://github.com/dnote/dnote)
- [PHPixie/Project: 一个轻量级的MVC-PHP框架,旨在提高速度和简化度](https://github.com/PHPixie/Project)
### December 28, 2020
- [ritaswc/zx-ip-address: IPv4/IPv6双栈地址离线数据库。](https://github.com/ritaswc/zx-ip-address)
- [rsyncOSX/RsyncOSX: rsync的macOS图形用户界面](https://github.com/rsyncOSX/RsyncOSX)
- [ktr0731/evans: 更具表现力的通用gRPC客户端](https://github.com/ktr0731/evans)
- [dushixiang/next-terminal: 使用Golang和React开发的一款HTML5的远程桌面网关,具有小巧、易安装、易使用、资源占用小的特点,支持RDP、SSH、VNC和Telnet协议的连接和管理。](https://github.com/dushixiang/next-terminal)
### December 24, 2020
- [doocs/jvm: 🤗 JVM 底层原理知识总结](https://github.com/doocs/jvm)
- [pomerium/pomerium: Pomerium是一个识别身份的访问代理。](https://github.com/pomerium/pomerium)
- [wx-chevalier/MySQL-Series: 📚深入浅出 MySQL 实战](https://github.com/wx-chevalier/MySQL-Series)
### December 23, 2020
- [taowen/awesome-lowcode: 国内低代码平台从业者交流](https://github.com/taowen/awesome-lowcode)
- [HansSchouten/PHPageBuilder: 拖放页面生成器,用于管理任何 PHP 项目中的页面。](https://github.com/HansSchouten/PHPageBuilder)
- [im3x/Scriptables: iOS14桌面组件神器(Scriptable)开发框架、教程、精美脚本分享](https://github.com/im3x/Scriptables)
- [mix-go/mix: Mix Go 是混合型高性能 Go 框架](https://github.com/mix-go/mix)
- [hoaproject/Iterator: Hoa Iterator 库。](https://github.com/hoaproject/Iterator)
### December 22, 2020
- [eiblog/eiblog: 快速博客系统](https://github.com/eiblog/eiblog)
- [ekalinin/github-markdown-toc.go: 轻松为GitHub README.md创建TOC(进行中)](https://github.com/ekalinin/github-markdown-toc.go)
- [zhenorzz/goploy: 部署、CI/CD、应用程序监视器、Crontab管理器。](https://github.com/zhenorzz/goploy)
- [sulu/sulu: 实现Sulu内容管理系统功能的核心框架](https://github.com/sulu/sulu)
- [PiPHP/GPIO: 一个用于访问 Raspberry Pi 上的 GPIO 管脚的 PHP 库。](https://github.com/PiPHP/GPIO)
### December 21, 2020
- [dghubble/gologin: 身份验证提供程序的Go登录处理程序(OAuth1,OAuth2)](https://github.com/dghubble/gologin)
### December 19, 2020
- [metersphere/metersphere: 一站式开源持续测试平台](https://github.com/metersphere/metersphere)
- [vuongxuongminh/yii2-searchable: 为Yii2 Active Record提供简单的全文本搜索。](https://github.com/vuongxuongminh/yii2-searchable)
- [k0sproject/k0s: Zero Friction Kubernetes](https://github.com/k0sproject/k0s)
### December 18, 2020
- [hunzhiwange/framework: QueryPHP是一个现代的,高性能的PHP渐进框架,以提供稳定可靠的高质量企业级框架作为其历史使命](https://github.com/hunzhiwange/framework)
- [xx-zh/xx-zh-roadmap: 中文翻译 Road Map](https://github.com/xx-zh/xx-zh-roadmap)
- [cdoco/common-regex: 🎃 常用正则表达式 ](https://github.com/cdoco/common-regex)
- [6tail/lunar-php: 无第三方依赖的公历(阳历)和农历(阴历、老黄历)工具](https://github.com/6tail/lunar-php)
### December 17, 2020
- [mIcHyAmRaNe/wso-webshell: 🕹 wso php webshell](https://github.com/mIcHyAmRaNe/wso-webshell)
- [geektutu/high-performance-go: Go 语言高性能编程,Go 语言陷阱,Gotchas,Traps](https://github.com/geektutu/high-performance-go)
- [Froxlor/Froxlor: 满足您需求的服务器管理软件-官方Froxlor开发Git存储库](https://github.com/Froxlor/Froxlor)
- [guanguans/coole: 一个基于开源优秀组件开发的 PHP 微框架。](https://github.com/guanguans/coole)
### December 16, 2020
- [Byron/gitoxide: 一个成语化、精益化、快速安全的纯粹 Rust Git 实现](https://github.com/Byron/gitoxide)
- [AnderGoig/github-contributions-ios: 🐙🐱 iOS版GitHub贡献小部件](https://github.com/AnderGoig/github-contributions-ios)
- [tsl0922/ttyd: 通过web共享您的终端](https://github.com/tsl0922/ttyd)
- [linkedin/Burrow: 卡夫卡消费者延迟检查](https://github.com/linkedin/Burrow)
- [yihong0618/running_page: 制作自己的运行主页](https://github.com/yihong0618/running_page)
### December 15, 2020
- [tailflow/laravel-orion: 用Laravel创建restapi的最简单方法](https://github.com/tailflow/laravel-orion)
- [go-playground/webhooks: 🎣 用于GitHub、Bitbucket、GitLab、Gogs的Webhook接收器](https://github.com/go-playground/webhooks)
- [peng-zhihui/PocketLCD: 带充电宝功能的便携显示器](https://github.com/peng-zhihui/PocketLCD)
- [cashwarden/api: 一款开源的资产管理系统](https://github.com/cashwarden/api)
### December 14, 2020
- [gomods/athens: 一个 Go 模块数据存储和代理](https://github.com/gomods/athens)
- [Go中的网页抓取工具,类似于BeautifulSoup](https://github.com/anaskhan96/soup)
- [opencontainers/runc: 根据 OCI 规范,用于生成和运行容器的 CLI 工具](https://github.com/opencontainers/runc)
### December 11, 2020
- [swoole/yasd: 又是一个Swoole调试器](https://github.com/swoole/yasd)
### December 10, 2020
- [Hackl0us/GeoIP-CN: 最小巧、最准确、最实用的中国大陆 IP 段 + GeoIP2 数据库](https://github.com/Hackl0us/GeoIP-CN)
- [rybakit/msgpack.php: MessagePack 序列化格式的纯 PHP 实现。](https://github.com/rybakit/msgpack.php)
### December 9, 2020
- [krallin/tini: 一个很小但有效的容器“init”](https://github.com/krallin/tini)
- [littlebossERP/erp_opensource: 小老板erp开源](https://github.com/littlebossERP/erp_opensource)
- [gabordemooij/redbean: 动态创建模型、配置和数据库的ORM层](https://github.com/gabordemooij/redbean)
- [nextras/orm: ORM with clean object design, smart relationship loading and powerful collections.](https://github.com/nextras/orm)
### December 8, 2020
- [ribice/gorsk: 🔥 惯用Golang Restful入门套件](https://github.com/ribice/gorsk)
- [ribice/gorsk: 🔥 惯用Golang Restful入门套件](https://github.com/ribice/gorsk)
- [pilosa/pilosa: Pilosa是一个开放源代码的分布式位图索引,可极大地加速跨多个海量数据集的查询。](https://github.com/pilosa/pilosa)
- [nowgoo/dict: 一个简单快速的词库,用来从一段文本中找出存在于词库的词语。](https://github.com/nowgoo/dict)
- [tauri-apps/tauri: 使用Web前端构建更小,更快和更安全的桌面应用程序。](https://github.com/tauri-apps/tauri)
- [okonet/lint-staged: 🚫💩—在git暂存文件上运行lint](https://github.com/okonet/lint-staged)
### December 7, 2020
- [tulios/json-viewer: 这是一个Chrome扩展程序,用于打印JSON和JSONP。](https://github.com/tulios/json-viewer)
- [google/gvisor: 容器应用程序内核](https://github.com/google/gvisor)
- [Nanguage/Rainbow-Fart-MBG: Rainbow-Fart 马保国语音包](https://github.com/Nanguage/Rainbow-Fart-MBG)
### December 5, 2020
- [rustcc/writing-an-os-in-rust: 《使用Rust编写操作系统》](https://github.com/rustcc/writing-an-os-in-rust)
- [actix/actix-web: actixweb是一个功能强大、实用且速度极快的Rust Web框架。](https://github.com/actix/actix-web)
- [leetaifook/golanger: Golanger是一个轻量级框架,用于在Go中编写web应用程序。](https://github.com/leetaifook/golanger)
### December 4, 2020
- [dspurl/dsshop: vue2.0+Laravel7商城电商平台](https://github.com/dspurl/dsshop)
- [😩「能不能好好说话?」 拼音首字母缩写翻译工具](https://github.com/itorr/nbnhhsh)
- [syncthing/syncthing: 开源连续文件同步](https://github.com/syncthing/syncthing)
- [phanan/htaccess: 一个有用的. htaccess 代码片段的集合。](https://github.com/phanan/htaccess)
### December 3, 2020
- [symfony/security-core: 安全性为复杂的授权系统提供了基础结构,这使得可以轻松地将实际授权逻辑与持有用户凭据的所谓用户提供程序分开。](https://github.com/symfony/security-core)
- [veewee/composer-run-parallel: 这个作曲家插件可让您并行运行作曲家文件中的任务。 无需等待一项特定任务!](https://github.com/veewee/composer-run-parallel)
- [galaxy-book/feishu-sdk-golang: 飞书开放平台 SDK](https://github.com/galaxy-book/feishu-sdk-golang)
### December 2, 2020
- [nunomaduro/ohdear-cli: 用Laravel Zero编写的非官方的Oh Dear CLI。](https://github.com/nunomaduro/ohdear-cli)
- [awssat/tailwindo: 🔌将Bootstrap CSS代码转换为Tailwind CSS代码](https://github.com/awssat/tailwindo)
- [phpMv/ubiquity: Ubiquity,一个强大而快速的高效设计框架。](https://github.com/phpMv/ubiquity)
- [SC-Networks/deepl-api-connector: 用于 deepl. com rest 翻译 api 的连接器库](https://github.com/SC-Networks/deepl-api-connector)
- [mmcdole/gofeed: 在Go中解析RSS,Atom和JSON feed](https://github.com/mmcdole/gofeed)
- [smalls0098/video-tools: About 短视频的PHP拓展包,集成各大短视频的去水印功能、抖音、快手、微视主流短视频。PHP去水印](https://github.com/smalls0098/video-tools)
### December 1, 2020
- [viest/laricon: Laricon是一个基于字符串生成identicon图像的库。](https://github.com/viest/laricon)
- [Celtoys/Remotery: 单个C文件,实时CPU/GPU分析器,带远程Web Viewer](https://github.com/Celtoys/Remotery)
- [xiaochong0302/course-tencent-cloud: 酷瓜云课堂,依托腾讯云基础服务架构,采用C扩展PHP框架Phalcon开发,致力开源网课系统,开源网校系统,开源在线教育系统。](https://github.com/xiaochong0302/course-tencent-cloud)
- [youzan/yz-cloud-boot: 有赞云有容器应用PHP框架](https://github.com/youzan/yz-cloud-boot)
### November 30, 2020
- [ovrclk/akash: 一个安全、透明、对等的云计算网络](https://github.com/ovrclk/akash)
- [s4n7h0/xvwa: XVWA是一个用PHP/MySQL编写的代码错误的web应用程序,它帮助安全爱好者学习应用程序安全性。](https://github.com/s4n7h0/xvwa)
- [tsufeki/tenkawa-php-language-server: PHP语言服务器,具有强大的静态分析和类型推断功能。](https://github.com/tsufeki/tenkawa-php-language-server)
### November 29, 2020
- [KnpLabs/packagist-api: Packagist的PHP API](https://github.com/KnpLabs/packagist-api)
### November 27, 2020
- [tal-tech/cds: 基于ClickHouse的大数据数据同步、存储、计算系统](https://github.com/tal-tech/cds)
- [BenMorel/smartdump: 转储选定的 MySQL 表及其关系](https://github.com/BenMorel/smartdump)
- [npmhub/npmhub: 🔎一个浏览器扩展,用于探索对GitHub存储库的npm依赖性](https://github.com/npmhub/npmhub)
- [yetanotherape/diff-match-patch: Diff Match和Patch库提供了强大的算法来执行同步纯文本所需的操作:](https://github.com/yetanotherape/diff-match-patch)
- [timacdonald/has-parameters: 一种特性,允许您以更类似于PHP的方式将参数传递给Laravel中间件。](https://github.com/timacdonald/has-parameters)
- [ayuer/shanghai_house_knowledge: 的买房购房做的一些功课分享给大家,技术人帮助技术人,希望对大家有所帮助。](https://github.com/ayuer/shanghai_house_knowledge)
### November 26, 2020
- [grachevko/markdown-builder: A helper class to create markdown](https://github.com/grachevko/markdown-builder)
- [fatih/color: Color package for Go (golang)](https://github.com/fatih/color)
- [tormjens/eventy: 类似于WordPress的Laravel动作和过滤器](https://github.com/tormjens/eventy)
### November 25, 2020
- [sergi/go-diff: Go中的Diff、match和patch text](https://github.com/sergi/go-diff)
- [larawelders/queue-event-logger: 记录队列事件的所有详细信息](https://github.com/larawelders/queue-event-logger)
- [RayWangQvQ/BiliBiliTool: .Net 5 编写的跨平台的B站(哔哩哔哩)任务工具,通过GitHub Actions实现每日线上自动运行任务:每日自动登录、观看、分享、投币视频,获取每日任务的满额经验,轻松升级Level 6,实现自动领取大会员权益、月底自动为自己充电等功能。](https://github.com/RayWangQvQ/BiliBiliTool)
- [samonzeweb/godb: Go SQL查询构建器和结构映射器。](https://github.com/samonzeweb/godb)
- [PromPHP/prometheus_client_php: 适用于PHP应用程序的Prometheus工具库](https://github.com/PromPHP/prometheus_client_php)
- [the1812/Bilibili-Evolved: 强大的哔哩哔哩增强脚本: 下载视频, 音乐, 封面, 弹幕 / 简化直播间, 评论区, 首页 / 自定义顶栏, 删除广告, 夜间模式 / 触屏设备支持](https://github.com/the1812/Bilibili-Evolved)
- [chanxuehong/wechat: weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk](https://github.com/chanxuehong/wechat)
### November 24, 2020
- [hug-sun/element3: 适用于Web的Vue.js 3.0 UI工具包。](https://github.com/hug-sun/element3)
- [robpike/filter: 简单的应用/过滤/减少包。](https://github.com/robpike/filter)
- [givebutter/laravel-custom-fields: 将自定义字段添加到您的Laravel模型。](https://github.com/givebutter/laravel-custom-fields)
- [Swop/github-webhook: 处理传入的GitHub Web挂钩请求的库(签名验证和有效负载解析)](https://github.com/Swop/github-webhook)
- [Swop/github-webhook: 处理传入的GitHub Web挂钩请求的库(签名验证和有效负载解析)](https://github.com/Swop/github-webhook)
- [laravel-notification-channels/webpush: Laravel的Webpush通知频道。](https://github.com/laravel-notification-channels/webpush)
- [jksusu/huawei-php: 华为云人脸服务 phpsdk,可在swoole环境下使用](https://github.com/jksusu/huawei-php)
- [jksusu/huawei-php: 华为云人脸服务 phpsdk,可在swoole环境下使用](https://github.com/jksusu/huawei-php)
- [joshrainwater/active-users: Laravel软件包,可轻松检索当前在线的活动用户和访客列表。](https://github.com/joshrainwater/active-users)
### November 21, 2020
- [davmixcool/laravel-meta-manager: Laravel Meta Manager是一个SEO工具,用于通过向您的应用程序添加推荐的meta标签来改善网站或特定页面的SEO。](https://github.com/davmixcool/laravel-meta-manager)
- [upptime/upptime: Upptime(upptime.js.org)是开源的正常运行时间监控器和状态页面,完全由GitHub Actions和Issues支持。](https://github.com/upptime/upptime)
- [tkestack/tke: 支持多租户和多集群的本地Kubernetes容器管理平台](https://github.com/tkestack/tke)
- [netdata/netdata: 对系统,容器,应用程序和基础架构的最佳监视和故障排除。](https://github.com/netdata/netdata)
- [hexters/ladmin: 在5分钟内建立管理员页面](https://github.com/hexters/ladmin)
- [bitfumes/laravel-multiauth: Laravel Project中的多重身份验证和管理员身份验证](https://github.com/bitfumes/laravel-multiauth)
### November 20, 2020
- [moyada/stealer: 抖音、快手、火山、皮皮虾,视频去水印程序](https://github.com/moyada/stealer)
- [k0sproject/k0s: k0s - Zero Friction Kubernetes](https://github.com/k0sproject/k0s)
- [ivopetkov/html5-dom-document-php: 适用于PHP的更好的HTML5解析器。](https://github.com/ivopetkov/html5-dom-document-php)
- [cmgmyr/laravel-messenger: 用于 Laravel 的简单用户消息包](https://github.com/cmgmyr/laravel-messenger)
- [webmozart/path-util: 该软件包提供了健壮的跨平台实用程序功能,用于规范化,比较和修改文件路径和URL。](https://github.com/webmozart/path-util)
- [google/wire: 编译时的 Go 依赖注入](https://github.com/google/wire)
- [jinzhu/copier: 用于golang的复印机,将值从struct复制到struct等](https://github.com/jinzhu/copier)
### November 19, 2020
- [netease-im/NIM_Duilib_Framework: About 网易云信Windows应用界面开发框架(基于Duilib)](https://github.com/netease-im/NIM_Duilib_Framework)
- [spatie/laravel-medialibrary-pro-app: Laravel应用程序来演示Media Library Pro的功能](https://github.com/spatie/laravel-medialibrary-pro-app)
- [wordshub/free-font: 大概是2020年最全的免费可商用字体,这里收录的商免字体都能找到明确的授权出处,可以放心使用,持续更新中...](https://github.com/wordshub/free-font)
- [KubeOperator/KubeOperator: KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。](https://github.com/KubeOperator/KubeOperator)
### November 18, 2020
- [GoogleContainerTools/skaffold: 简易可重复的 Kubernetes 开发](https://github.com/GoogleContainerTools/skaffold)
- [jomweb/billplz: PHP框架不可知库,可与BillPlz API v3及更高版本配合使用...](https://github.com/jomweb/billplz)
- [go-echarts/go-echarts: 🎨 Golang可爱的图表库](https://github.com/go-echarts/go-echarts)
- [microsoft/Web-Dev-For-Beginners: 24课,12周,以Web开发人员入门](https://github.com/microsoft/Web-Dev-For-Beginners)
- [blanboom/awesome-home-networking-cn: 家庭网络知识整理](https://github.com/blanboom/awesome-home-networking-cn)
- [proengsoft/laravel-jsvalidation: Laravel Javascript验证](https://github.com/proengsoft/laravel-jsvalidation)
- [hantmac/Mastering_Go_Second_Edition_Zh_CN: About Mastering Go 第二版中文版](https://github.com/hantmac/Mastering_Go_Second_Edition_Zh_CN)
- [symfony-cmf/Routing: 建立在Symfony路由组件上的路由组件](https://github.com/symfony-cmf/Routing)
- [jarektkaczyk/eloquence: Extensions for the Eloquent ORM](https://github.com/jarektkaczyk/eloquence)
- [Luracast/Laravel-Database: Laravel 数据库为您的非 Laravel 项目。](https://github.com/Luracast/Laravel-Database)
### November 17, 2020
- [dinedal/textql: 使您可以轻松地针对CSV或TSV等结构化文本执行SQL。](https://github.com/dinedal/textql)
- [yzen-dev/mono-processor: 用有关错误的辅助信息补充日志记录](https://github.com/yzen-dev/mono-processor)
- [sindresorhus/screenfull.js: 用于JavaScript全屏API的跨浏览器使用的简单包装](https://github.com/sindresorhus/screenfull.js)
- [vapor/vapor: 一个服务器端的 Swift web 框架。](https://github.com/vapor/vapor)
- [Kujiale-Mobile/Painter: 小程序生成图片库,轻松通过 json 方式绘制一张可以发到朋友圈的图片](https://github.com/Kujiale-Mobile/Painter)
- [AlecAivazis/survey: 一个golang库,用于构建交互式提示,并完全支持Windows和posix终端。](https://github.com/AlecAivazis/survey)
### November 16, 2020
- [zgabievi/laravel-promocodes: Promotional Codes Generator for Laravel >5](https://github.com/zgabievi/laravel-promocodes)
- [joshbrw/laravel-module-installer: 这个软件包的目的是为了方便地将独立模块安装到 Laravel 模块软件包中。此包将确保将模块安装到 Modules/目录而不是 vendor/中。](https://github.com/joshbrw/laravel-module-installer)
- [vcraescu/go-paginator: 在 Golang 实现分页的简单方法。](https://github.com/vcraescu/go-paginator)
- [elrumo/macOS_Big_Sur_icons_replacements: 具有macOS Big Sur风格的流行应用程序的替换图标](https://github.com/elrumo/macOS_Big_Sur_icons_replacements)
- [johnlui/GraphQL-Laravel: A Laravel GraphQL reference implementation forked from webonyx/graphql-php](https://github.com/johnlui/GraphQL-Laravel)
- [noahbuscher/macaw: 简单的 PHP 路由器](https://github.com/NoahBuscher/Macaw)
- [qxinGitHub/searchEngineJump: 搜索引擎跳转脚本,能够方便的在多个引擎之间跳转](https://github.com/qxinGitHub/searchEngineJump)
### November 13, 2020
- [element-plus/element-plus: 🎉 A Vue.js 3.0 UI Library](https://github.com/element-plus/element-plus)
- [SkyAPM/SkyAPM-php-sdk: Apache SkyWalking 的 PHP 工具代理](https://github.com/SkyAPM/SkyAPM-php-sdk)
- [photoprism/photoprism: 由Go和Google TensorFlow支持的个人照片管理](https://github.com/photoprism/photoprism)
- [lokielse/omnipay-wechatpay: (Omnipay PHP付款处理库的WechatPay驱动程序](https://github.com/lokielse/omnipay-wechatpay)
### November 12, 2020
- [gorilla/sessions: 软件包gorilla / sessions为自定义会话后端提供cookie和文件系统会话以及基础结构。](https://github.com/gorilla/sessions)
- [mattn/go-sqlite3: sqlite3驱动程序,用于使用数据库/ sql](https://github.com/mattn/go-sqlite3)
- [rogchap/wombat: 跨平台gRPC客户端](https://github.com/rogchap/wombat)
- [Redocly/redoc: 📘OpenAPI / Swagger生成的API参考文档](https://github.com/Redocly/redoc)
- [openacid/slim: Golang中惊人的节省空间的trie(11位/密钥;100 ns/get)。](https://github.com/openacid/slim)
- [laravel/legacy-factories:该软件包为Laravel 8.x +的上一代Laravel工厂(<= 7.x)提供支持。](https://github.com/laravel/legacy-factories)
- [grafana/loki: Loki 是一个受 Prometheus 启发的水平可伸缩的、高可用的、多租户的日志聚合系统](https://github.com/grafana/loki)
- [IsraelOrtuno/pipedrive: 适用于PHP的完整Pipedrive API客户端](https://github.com/IsraelOrtuno/pipedrive)
- [Intervention/validation: Laravel验证类的扩展](https://github.com/Intervention/validation)
- [nunomaduro/laravel-console-summary: 📖适用于Artisan或Laravel Zero的精美Laravel控制台摘要。](https://github.com/nunomaduro/laravel-console-summary)
### November 11, 2020
- [mohuihui/DingTalk_Assistant: 钉钉助手,主要功能包括:聊天消息防撤回、程序多开、屏蔽频繁升级等。](https://github.com/mohuihui/DingTalk_Assistant)
- [senaranya/Laravel-Env-Sync: Laravel软件包来检查或同步两个.env文件](https://github.com/senaranya/Laravel-Env-Sync)
- [manchenkoff/yii2-project: Yii 2 application boilerplate](https://github.com/manchenkoff/yii2-project)
- [manchenkoff/yii2-helpers: Yii2扩展-有用的帮助器功能](https://github.com/manchenkoff/yii2-helpers)
- [alterphp/EasyAdminExtensionBundle: 为EasyAdminBundle for Symfony提供一些附加功能](https://github.com/alterphp/EasyAdminExtensionBundle)
### November 10, 2020
- [laravel/breeze: Breeze 为使用身份验证构建 Laravel 应用程序提供了一个简单的起点。](https://github.com/laravel/breeze)
- [caneco/laravel-country-logomarks: Laravel国家徽标的非官方(但很幸运)的存储库。](https://github.com/caneco/laravel-country-logomarks)
- [miekg/dns: 完整且可用的DNS库。 支持所有资源记录,包括DNSSEC类型](https://github.com/miekg/dns)
- [bluele/gcache: 用于golang的缓存库。 它支持过期的Cache,LFU,LRU和ARC。](https://github.com/bluele/gcache)
- [ThreeDotsLabs/wild-workouts-go-ddd-example: 完整的serverless应用程序,展示如何通过实际重构Go项目来应用DDD、Clean架构和CQRS。](https://github.com/ThreeDotsLabs/wild-workouts-go-ddd-example)
- [jwma/jump-jump: 开箱即用,Golang 开发的一个功能完善的短链接系统。](https://github.com/jwma/jump-jump)
### November 9, 2020
- [icecoder/ICEcoder: ICEcoder是基于浏览器的代码编辑器](https://github.com/icecoder/ICEcoder)
- [thephpleague/oauth2-github: OAuth 2.0客户端的GitHub提供程序](https://github.com/thephpleague/oauth2-github)
- [Firehed/simpleLogger: SimpleLogger是一个用于编写日志的PHP库。](https://github.com/Firehed/simpleLogger)
- [matthiasmullie/minify: CSS和JavaScript压缩程序,用PHP](https://github.com/matthiasmullie/minify)
- [AnytimeSA/anytime-api-php-sdk: 该软件包的目的是促进API的实现。](https://github.com/AnytimeSA/anytime-api-php-sdk)
### November 7, 2020
- [docker/compose-cli: 使用compose-cli轻松将您的Compose应用程序运行到云中](https://github.com/docker/compose-cli)
- [zhwei/nacos-sdk-php: Nacos OpenAPI的PHP实现。](https://github.com/zhwei/nacos-sdk-php)
- [alibaba/nacos: 一个易于使用的动态服务发现,配置和服务管理平台,用于构建云本机应用程序。.](https://github.com/alibaba/nacos)
- [spatie/crypto: 使用私钥/公钥加密和解密数据](https://github.com/spatie/crypto)
- [erebe/personal-server: 使用k3s的个人服务器配置](https://github.com/erebe/personal-server)
- [vhessam/laravel-blogger:Laravel博客包和laravel cms,可为您的网站添加wordpress功能,并与laravel 8兼容。](https://github.com/vhessam/laravel-blogger)
### November 6, 2020
- [jofpin/trape: 互联网上的人员跟踪器:Jose Pino的OSINT分析和研究工具](https://github.com/jofpin/trape)
- [pupuk/address: 纯PHP版,收货地址智能解析,不需要数据库支持,简单易用。可解析(身份证号,电话,座机,区号,省市区街道地址)](https://github.com/pupuk/address)
### November 5, 2020
- [nette/caching: ⏱具有易于使用的API和许多缓存后端的缓存库。](https://github.com/nette/caching)
- [dwisiswant0/go-stare: 无需盲目浏览器即可快速,轻松地捕获Web截图,但使用Chrome DevTools协议!](https://github.com/dwisiswant0/go-stare)
- [themsaid/ibis: 此PHP工具可帮助您以markdown编写电子书。](https://github.com/themsaid/ibis)
- [antonmedv/expr: 用于Go的表达式评估引擎:快速,非图灵完整,动态键入,静态键入](https://github.com/antonmedv/expr)
- [NodeBB/NodeBB: 基于 Node.js 的现代网络论坛软件](https://github.com/NodeBB/NodeBB)
- [yuin/goldmark: 一个用 Go 语言编写的减价解析器,易于扩展,符合标准(CommonMark) ,结构良好。](https://github.com/yuin/goldmark)
- [polaris1119/golangweekly: Go语言爱好者周刊,每周日发布](https://github.com/polaris1119/golangweekly)
- [willf/bloom: 实现 Bloom 过滤器的 Go 包](https://github.com/willf/bloom)
- [sparrow-js/sparrow: 🎉场景化低代码(LowCode)搭建工作台,实时输出源代码](https://github.com/sparrow-js/sparrow)
- [s3inlc/hashtopolis: Hashcat包装器,用于分布式哈希破解](https://github.com/s3inlc/hashtopolis)
- [WizTeam/WizQTClient: 为知笔记跨平台客户端](https://github.com/WizTeam/WizQTClient)
- [nivin-studio/nivinEdu: 拟物校园,一个高校教务系统爬虫](https://github.com/nivin-studio/nivinEdu)
### November 4, 2020
- [pterm/pterm: go一个现代化的go模块,可美化控制台输出。 具有图表,进度条,表格,树等功能🚀完全可配置且100%跨平台兼容。](https://github.com/pterm/pterm)
- [allansun/kubernetes-php-client: Kubernetes PHP客户端](https://github.com/allansun/kubernetes-php-client)
- [neatlife/php-nacos: 阿里巴巴nacos配置中心-PHP客户端](https://github.com/neatlife/php-nacos)
- [KubeOperator/KubeOperator: KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。](https://github.com/KubeOperator/KubeOperator)
- [seanmorris/php-wasm: 浏览器中的 PHP,由 WebAssembly 提供支持。](https://github.com/seanmorris/php-wasm)
- [lcobucci/content-negotiation-middleware: PSR-15中间件来处理内容协商](https://github.com/lcobucci/content-negotiation-middleware)
- [brcontainer/html2canvas-php-proxy: 该脚本允许您使用 html2canvas.js 与不同的服务器、端口和协议(http、 https)一起使用,以防止在导出图像的 < canvas > 时出现“受污染”的情况。](https://github.com/brcontainer/html2canvas-php-proxy)
### November 3, 2020
- [snori74/linuxupskillchallenge: 从命令行学习对远程Linux服务器进行sysadmin所需的技能。](https://github.com/snori74/linuxupskillchallenge)
- [google/ko: 在Kubernetes上构建和部署Go应用程序](https://github.com/google/ko)
- [cnwangjie/better-onetab: 📑适用于Chrome的更好的OneTab](https://github.com/cnwangjie/better-onetab)
- [flosch/pongo2: Django语法,例如Go的模板引擎](https://github.com/flosch/pongo2)
### November 2, 2020
- [caffeinated/themes: 支持 Caffeinated Modules 包的 Laravel 主题包。](https://github.com/caffeinated/themes)
- [hellodword/wechat-feeds: 给微信公众号生成 RSS 订阅源](https://github.com/hellodword/wechat-feeds)
- [Mayccoll/Gogh: Gnome终端和万神殿终端的配色方案](https://github.com/Mayccoll/Gogh)
- [ksk001100/seahorse: 用Rust编写的最小CLI框架](https://github.com/ksk001100/seahorse)
### October 30, 2020
- [calebporzio/livewire-bot: Livewire的GitHub机器人](https://github.com/calebporzio/livewire-bot)
- [vercel/vercel: Vercel是前端团队的最佳工作流程。 多合一:静态和Jamstack部署,无服务器功能和全局CDN。](https://github.com/vercel/vercel)
- [tabuna/breadcrumbs: Laravel Breadcrumbs-一种将面包屑添加到@laravel应用的简单方法。Laravel Breadcrumbs-一种将面包屑添加到@laravel应用的简单方法。](https://github.com/tabuna/breadcrumbs)
- [codecov/codecov-action: GitHub Action将覆盖范围上传到Codecov☂️](https://github.com/codecov/codecov-action)
- [FloeDesignTechnologies/phpcs-security-audit: phpcs-security-audit是一组PHP_CodeSniffer规则,用于查找与PHP代码中的安全性相关的漏洞和弱点](https://github.com/FloeDesignTechnologies/phpcs-security-audit)
- [xlab/c-for-go: 用于Go编程语言的自动C-Go绑定生成器](https://github.com/xlab/c-for-go)
### October 29, 2020
- [MrS0m30n3/youtube-dl-gui: 用wxPython编写的流行youtube-dl的跨平台前端GUI。](https://github.com/MrS0m30n3/youtube-dl-gui)
- [overtrue/qcloud-cos-client: QCloud COS Client](https://github.com/overtrue/qcloud-cos-client)
- [Bearer/Pizzly: 将您的应用程序与OAuth API集成在一起的最简单,最快的方法](https://github.com/bearer/pizzly?utm_source=xinquji)
- [sebastianbergmann/php-timer: 用于计时的实用程序类,从PHPUnit分解为独立组件。](https://github.com/sebastianbergmann/php-timer)
### October 28, 2020
- [lxk0301/scripts: 京东薅羊毛工具, 京东水果、宠物、种豆等等](https://github.com/lxk0301/scripts)
- [FakerPHP/Faker: Faker是一个PHP库,可以为您生成假数据](https://github.com/FakerPHP/Faker)
- [spatie/laravel-route-attributes: 使用PHP 8属性在Laravel应用中注册路由](https://github.com/spatie/laravel-route-attributes)
- [TransparentLC/WechatMomentScreenshot: 朋友圈转发截图生成工具](https://github.com/TransparentLC/WechatMomentScreenshot)
- [mcaskill/composer-plugin-exclude-files: 📦Composer插件可使用“文件”自动加载机制排除软件包所需的文件。](https://github.com/mcaskill/composer-plugin-exclude-files)
- [qcod/laravel-app-settings: 使用Laravel应用的管理员界面将设置存储在数据库中](https://github.com/qcod/laravel-app-settings)
- [Elao/PhpEnums: 🔩提供PHP和框架集成的枚举](https://github.com/Elao/PhpEnums)
- [https://www.cupfox.com - 茶杯狐 Cupfox](https://www.cupfox.com/)
- [graphql-editor/graphql-editor: 📺 Visual Editor & GraphQL IDE. Draw GraphQL schemas using visual 🔷 nodes and explore GraphQL API with beautiful UI. Even 🐒 can do that!](https://github.com/graphql-editor/graphql-editor)
### October 27, 2020
- [rollbar/rollbar-php: 错误跟踪和从PHP记录到Rollbar](https://github.com/rollbar/rollbar-php)
- [jenssegers/laravel-rollbar: 适用于Laravel项目的Rollbar错误监视集成](https://github.com/jenssegers/laravel-rollbar)
- [symfony/thanks: 感谢您的PHP软件包维护者(不限于Symfony组件)(以GitHub★的形式)!](https://github.com/symfony/thanks)
- [mixn/carbon-now-cli: code代码的精美图片-从终端内部直接显示。](https://github.com/mixn/carbon-now-cli)
- [marcelgwerder/laravel-api-handler: 包提供Laravel REST-API的帮助程序功能](https://github.com/marcelgwerder/laravel-api-handler)
- [cloudcake/laravel-approval: 为Laravel附加一个批准过程到任何模型,批准和拒绝任何其他模型。](https://github.com/cloudcake/laravel-approval)
- [funkjedi/composer-include-files: 以比自动加载文件更高的优先级包含文件。](https://github.com/funkjedi/composer-include-files)
- [blade-ui-kit/blade-ui-kit: 一组在Laravel Blade视图中使用的无渲染组件。](https://github.com/blade-ui-kit/blade-ui-kit)
- [zenghongtu/PPet: 👻在你的桌面放一个萌妹子,多一点趣味😏~(支持Mac、Win和Linux)](https://github.com/zenghongtu/PPet)
- [matthiasnoback/live-code-coverage: 该库应该可以帮助您在实时服务器上生成代码覆盖率报告](https://github.com/matthiasnoback/live-code-coverage)
### October 26, 2020
- [laminas/laminas-code: PHP Reflection API的扩展,静态代码扫描和代码生成](https://github.com/laminas/laminas-code)
- [mahavivo/english-wordlists: 常用英语词汇表](https://github.com/mahavivo/english-wordlists)
- [schmittjoh/metadata: Metadata is a library for metadata management in PHP](https://github.com/schmittjoh/metadata)
- [alefragnani/vscode-bookmarks: Visual Studio Code的书签扩展](https://github.com/alefragnani/vscode-bookmarks)
- [yuanqing/vdx: 🎞️FFmpeg支持的用于处理视频的直观CLI](https://github.com/yuanqing/vdx)
- [mifi/lossless-cut: 无损视频/音频编辑的瑞士军刀](https://github.com/mifi/lossless-cut)
- [EmbarkStudios/rust-gpu: 🐉 使Rust成为GPU代码的一流语言和生态系统🚧](https://github.com/EmbarkStudios/rust-gpu)
- [smaranchand/bucky: Bucky(自动的S3存储桶发现工具)](https://github.com/smaranchand/bucky)
### October 25, 2020
- [cerbero90/Workflow: Laravel 5软件包通过利用管道的功能来创建可扩展和可维护的应用程序。](https://github.com/cerbero90/Workflow)
### October 24, 2020
- [mailhog/MailHog: 基于Web和API的SMTP测试](https://github.com/mailhog/MailHog)
- [meilisearch/MeiliSearch: MeiliSearch是功能强大,快速,开源,易于使用和部署的搜索引擎。](https://github.com/meilisearch/MeiliSearch)
- [meilisearch/meilisearch-php: 用于MeiliSearch API的PHP包装器](https://github.com/meilisearch/meilisearch-php)
- [rtheunissen/guzzle-log-middleware: Guzzle 6中间件,用于记录请求和响应](https://github.com/rtheunissen/guzzle-log-middleware)
- [gao-sun/eul: 在macOS中享受清晰,简单的状态监控。](https://github.com/gao-sun/eul)
- [mtvbrianking/multi-auth: Laravel多重认证套件](https://github.com/mtvbrianking/multi-auth)
- [rtconner/laravel-likeable: Laravel模型可以轻松实现“喜欢”或“收藏”或“记住”功能。](https://github.com/rtconner/laravel-likeable)
- [KumbiaPHP/KumbiaPHP: 快速简便的PHP框架](https://github.com/KumbiaPHP/KumbiaPHP)
- [gegocart/admin: Gegocart的管理界面-使用Laravel构建](https://github.com/gegocart/admin)
- [wei/socialify: 💞社交化您的项目。 with与世界分享!](https://github.com/wei/socialify?utm_source=xinquji)
- [open-source-labs/reactime: Chrome扩展程序,用于在React应用程序中进行状态调试](https://github.com/open-source-labs/reactime?utm_source=xinquji)
### October 23, 2020
- [xwb1989/sqlparser: Go中实现的SQL解析器](https://github.com/xwb1989/sqlparser)
- [taielab/Taie-Bugbounty-killer: 挖掘国内外漏洞平台必备的自动化捡钱赏金技巧,看了并去做了捡钱如喝水。](https://github.com/taielab/Taie-Bugbounty-killer)
- [walkor/crontab: 一个基于workerman用PHP编写的crontab](https://github.com/walkor/crontab)
- [stymiee/php-simple-encryption: PHP Simple Encryption库旨在简化数据加密和解密的过程,同时确保遵循最佳实践。](https://github.com/stymiee/php-simple-encryption)
- [jkonieczny/PHP-Crontab: PHP中的Crontab格式解析器](https://github.com/jkonieczny/PHP-Crontab)
- [filebrowser/filebrowser: 📂Web文件浏览器,可以用作中间件或独立应用程序。](https://github.com/filebrowser/filebrowser)
- [nullivex/lib-array2xml: Array2XML conversion library credit to lalit.org](https://github.com/nullivex/lib-array2xml)
- [rafrsr/lib-array2xml: XML2Array是用于将XML转换为PHP中的数组的类。 它返回一个数组,可以使用Array2XML类将其转换回XML。](https://github.com/rafrsr/lib-array2xml)
- [appstract/laravel-blade-directives: 漂亮的Laravel Blade指令集合](https://github.com/appstract/laravel-blade-directives)
- [micc83/mailamie: ami Mailamie是一个简单的SMTP捕获所有用PHP编写的用于测试的服务器。](https://github.com/micc83/mailamie)
- [spatie/data-transfer-object: Data transfer objects with batteries included](https://github.com/spatie/data-transfer-object)
- [coreymcmahon/Simplex: Create your own framework on top of the Symfony2 Components](https://github.com/coreymcmahon/Simplex)
- [umpirsky/Simplex: 基于Silex的PHP微框架](https://github.com/umpirsky/Simplex)
- [nahidulhasan/simplex: Simplex框架非常简单容易。 对于想学习PHP的PHP初学者来说,这将是非常有用的。](https://github.com/nahidulhasan/simplex)
- [nahidulhasan/laravel-pdf: 一个简单的程序包,可轻松地从HTML生成PDF文档。](https://github.com/nahidulhasan/laravel-pdf)
- [nahidulhasan/git-flow-example: Git Flow Example](https://github.com/nahidulhasan/git-flow-example)
- [freddiefrantzen/simplex: PHP 7的模块化微型框架](https://github.com/freddiefrantzen/simplex)
- [php-pm/php-pm-httpkernel: 用于Symfony和Laravel框架与PHP-PM一起使用的HttpKernel适配器](https://github.com/php-pm/php-pm-httpkernel)
- [stackphp/run: 用于处理HttpKernel前控制器样板的快捷功能。](https://github.com/stackphp/run)
- [driftphp/http-kernel: React️基于Symfony组件的基于ReactPHP的内核](https://github.com/driftphp/http-kernel)
- [apache/mesos: Apache Mesos是一个集群管理器,可在分布式应用程序或框架之间提供有效的资源隔离和共享。](https://github.com/apache/mesos)
- [capistrano/capistrano: Capistrano是用于构建自动化部署脚本的框架。 尽管Capistrano本身是用Ruby编写的,但可以轻松地用于部署任何语言或框架的项目,无论是Rails,Java还是PHP。](https://github.com/capistrano/capistrano)
- [symfony/workflow: 工作流组件提供用于管理工作流或有限状态机的工具。](https://github.com/symfony/workflow)
### October 22, 2020
- [actions/virtual-environments: GitHub Actions虚拟环境](https://github.com/actions/virtual-environments)
- [kbinani/screenshot: Go 库以捕获桌面到图像](https://github.com/kbinani/screenshot)
- [brson/rust-anthology: 最好地学习Rust](https://github.com/brson/rust-anthology)
- [alibaba/fish-redux: An assembled flutter application framework.](https://github.com/alibaba/fish-redux)
- [sensiolabs/SensioFrameworkExtraBundle: Symfony FrameworkBundle的扩展,为Controller类添加了注释配置](https://github.com/sensiolabs/SensioFrameworkExtraBundle)
- [varnishcache/varnish-cache: Varnish缓存源代码库](https://github.com/varnishcache/varnish-cache)
### October 21, 2020
- [DirectoryLister/DirectoryLister: List Directory Lister是公开任何可通过Web访问的文件夹的内容以进行浏览和共享的最简单方法。](https://github.com/DirectoryLister/DirectoryLister)
- [asantibanez/livewire-charts: 为您的Laravel项目提供整洁的Livewire图表](https://github.com/asantibanez/livewire-charts)
- [peng-zhihui/HDMI-PI: 我设计的一个HDMI转MIPI模块,可以用于驱动各种手机屏幕当显示器用。](https://github.com/peng-zhihui/HDMI-PI)
- [vaimo/composer-patches: 将补丁从本地或远程文件应用到给定composer项目中的任何软件包。](https://github.com/vaimo/composer-patches)
- [sfelix-martins/passport-multiauth: 增加对Laravel Passport多重身份验证的支持](https://github.com/sfelix-martins/passport-multiauth)
- [exussum12/xxhash: PHP中的xxhash实现](https://github.com/exussum12/xxhash)
- [asantibanez/livewire-calendar: Laravel Livewire组件,用于在好看的月历中显示事件](https://github.com/asantibanez/livewire-calendar)
- [sanmai/pipeline: 在PHP中构建流传输管道。 缺少管道操作员。 通用收集管道。](https://github.com/sanmai/pipeline)
- [mpociot/pipeline: 用于类似中间件之类的简单PHP管道。](https://github.com/mpociot/pipeline)
- [gamedilong/anes-repository: vscode插件小霸王remote仓库](https://github.com/gamedilong/anes-repository)
### October 20, 2020
- [wallabag/wallabag: wallabag是一个可自我托管的应用程序,用于保存网页:保存和分类文章。 以后再阅读](https://github.com/wallabag/wallabag)
- [Sammyjo20/Wagonwheel: 向用户提供您的Laravel电子邮件的在线版本。](https://github.com/Sammyjo20/Wagonwheel)
- [StydeNet/enlighten: 通过自动生成的文档启发您的API](https://github.com/StydeNet/enlighten)
- [nextcloud/passman: with具有Nextcloud集成的开源密码管理器](https://github.com/nextcloud/passman)
- [qier222/YesPlayMusic: 高颜值的第三方网易云播放器](https://github.com/qier222/YesPlayMusic)
- [J0o1ey/rips-Chinese: 本人三年前汉化的PHP代码审计工具rips](https://github.com/J0o1ey/rips-Chinese)
- [icomefromthenet/ReverseRegex: 使用正则表达式在PHP中生成文本字符串。](https://github.com/icomefromthenet/ReverseRegex)
- [xu-cheng/latex-action: GitHub编译LaTeX文档的动作](https://github.com/xu-cheng/latex-action)
### October 19, 2020
- [kornrunner/php-blurhash: Blurhash的纯PHP实现(woltapp/Blurhash)](https://github.com/kornrunner/php-blurhash)
- [fhefh2015/Fast-GitHub: 国内Github下载很慢,用上了这个插件后,下载速度嗖嗖嗖的~!](https://github.com/fhefh2015/Fast-GitHub)
- [hashicorp/waypoint: 用于在任何平台上构建,部署和发布任何应用程序的工具。](https://github.com/hashicorp/waypoint)
- [EventSaucePHP/EventSauce: PHP的实用事件源](https://github.com/EventSaucePHP/EventSauce)
- [jonassiewertsen/statamic-livewire: A Laravel Livewire integration for Statamics antlers engine](https://github.com/jonassiewertsen/statamic-livewire)
- [RainbowRoad1/Cgame: 一些用C编写的小游戏, 14行贪吃蛇 22行2048 22行俄罗斯方块 25行扫雷...以及各种小玩意](https://github.com/RainbowRoad1/Cgame)
- [hashicorp/waypoint-examples: 可以与Waypoint一起部署的示例应用程序](https://github.com/hashicorp/waypoint-examples)
- [FriendsOfSymfony/FOSHttpCacheBundle: 在Symfony项目中使用FOSHttpCache库](https://github.com/FriendsOfSymfony/FOSHttpCacheBundle)
### October 16, 2020
- [chriswalz/bit: Bit是现代的Git CLI](https://github.com/chriswalz/bit)
- [qqizai/CrackJs: 记录一下js逆向的网站](https://github.com/qqizai/CrackJs)
- [felixfbecker/vscode-php-intellisense: 适用于Visual Studio Code的高级PHP IntelliSense🆚💬](https://github.com/felixfbecker/vscode-php-intellisense)
- [zoho/zcrm-php-sdk: Zoho CRM API SDK是Zoho CRM API的包装。 通过使用此SDK,用户可以轻松构建应用程序](https://github.com/zoho/zcrm-php-sdk)
### October 15, 2020
- [vueComponent/ant-design-vue: 🌈基于Ant Design和Vue的企业级UI组件。 🐜](https://github.com/vueComponent/ant-design-vue)
- [gwen001/github-subdomains: 在GitHub上查找子域](https://github.com/gwen001/github-subdomains)
- [TheDoctor0/laravel-factory-generator: Laravel 6.x,7.x,8.x的模型工厂生成器。](https://github.com/TheDoctor0/laravel-factory-generator)
- [aristocratos/bpytop:Linux / OSX / FreeBSD资源监视器](https://github.com/aristocratos/bpytop)
### October 14, 2020
- [kaola-fed/megalo: 基于 Vue 的小程序开发框架](https://github.com/kaola-fed/megalo)
- [kubeless/kubeless: Kubernetes Native Serverless Framework](https://github.com/kubeless/kubeless)
- [centrifugal/centrifugo: 与语言无关的可扩展实时消息服务器](https://github.com/centrifugal/centrifugo)
- [spatie/laravel-directory-cleanup: 清理指定目录中的旧文件](https://github.com/spatie/laravel-directory-cleanup)
- [golang-module/carbon: 一个简单,语义化且对开发人员友好的golang软件包,用于日期时间](https://github.com/golang-module/carbon)
- [evilbutcher/Scriptables: 关于Scriptable的好玩代码](https://github.com/evilbutcher/Scriptables)
- [GideonSenku/Scriptable: 一个名为Scriptable脚本的iOS应用](https://github.com/GideonSenku/Scriptable)
- [chavyleung/scripts: SPA Appliction可用于脚本工具](https://github.com/chavyleung/scripts)
### October 13, 2020
- [BardoQi/Sight: 你所渴望的Laravel的Presnter层](https://github.com/BardoQi/Sight/blob/master/README.cn.md)
- [commerceguys/addressing: 由CLDR和Google的地址数据提供支持的PHP地址库。](https://github.com/commerceguys/addressing)
- [gookit/validate: Go通用的数据验证与过滤库,使用简单,内置大部分常用验证、过滤器,支持自定义验证器、自定义消息、字段翻译。](https://github.com/gookit/validate)
- [danielme85/laravel-log-to-db: 自定义Laravel和Lumen 5.6+日志通道处理程序,可以将日志事件存储到SQL或MongoDB数据库。 使用Laravel / Monolog本机日志记录功能。](https://github.com/danielme85/laravel-log-to-db)
- [spatie/laravel-translation-loader: 将翻译存储在数据库或其他来源中](https://github.com/spatie/laravel-translation-loader)
- [ljrcore/LearningLinuxKernel: 和我一起学习Linux内核吧](https://github.com/ljrcore/LearningLinuxKernel)
- [zhaoolee/ChineseBQB: 表情包的博物馆, Github最有毒的仓库](https://github.com/zhaoolee/ChineseBQB)
- [caffeinated/modules: 📦 Laravel模块包](https://github.com/caffeinated/modules)
### October 12, 2020
- [tfsec/tfsec: 🔒🌍为您的Terraform代码提供静态分析支持的安全扫描器](https://github.com/tfsec/tfsec)
- [charmbracelet/bubbletea: 强大的小TUI框架🏗](https://github.com/charmbracelet/bubbletea)
- [cch123/golang-notes: Go源码分析(zh-cn)](https://github.com/cch123/golang-notes)
- [在大约2分钟内免费获得MacOS或Linux Shell](https://github.com/cch123/golang-notes)
### October 10, 2020
- [theme-nexmoe/typecho-theme-nexmoe: 🔥 一个特别的 Typecho 主题](https://github.com/theme-nexmoe/typecho-theme-nexmoe)
- [mmcloughlin/avo: avo使高性能的Go组件更易于编写、审查和维护](https://github.com/mmcloughlin/avo)
- [TheAlgorithms/PHP: 在PHP中实现的所有算法](https://github.com/TheAlgorithms/PHP)
- [chrisleekr/yii2-angular-boilerplate: Yii2 REST API + Angular10样板(前端/后端)](https://github.com/chrisleekr/yii2-angular-boilerplate)
- [xiangyuecn/AreaCity-JsSpider-StatsGov: 省市区县乡镇三级或四级城市数据,带拼音标注、坐标、行政区域边界范围;2020年08月18日最新采集,提供csv格式文件,支持在线转成多级联动js代码、通用json格式,提供软件转成shp、geojson、sql、导入数据库;带浏览器里面运行的js采集源码,综合了中华人民共和国民政部、国家统计局、高德地图、腾讯地图行政区划数据](https://github.com/xiangyuecn/AreaCity-JsSpider-StatsGov)
- [olexale/flutter_roadmap: flutter roadmap](https://github.com/olexale/flutter_roadmap)
### October 9, 2020
- [screego/server: 开发人员的屏幕共享](https://github.com/screego/server)
- [itorr/vaporwave: 📹「 蒸 気 機 」虚拟信号蒸汽波风格化影像后期工具](https://github.com/itorr/vaporwave)
- [actionsflow/actionsflow: 免费的Zapier / IFTTT替代方案,供开发人员根据Github操作自动执行工作流程](https://github.com/actionsflow/actionsflow)
- [Celaraze/Chemex: 🔥 基于优雅的Laravel和DcatAdmin开发,为企业运维人员提供免费、开源、易用的运维设备管理平台。](https://github.com/Celaraze/Chemex)
- [php/pecl-networking-uuid:PHP UUID扩展](https://github.com/php/pecl-networking-uuid)
- [google/php-crc32: PHP CRC32实现(支持所有crc32多项式和硬件加速)](https://github.com/google/php-crc32)
- [yinxin630/fiora: 一个有趣的应用程序聊天插座.io,koa,mongodb和react](https://github.com/yinxin630/fiora)
- [myloveGy/yii2-admin: yii2 后台管理模块](https://github.com/myloveGy/yii2-admin)
- [starship/starship: ☄🌌️任何外壳的最小,快速,可自定义的提示!](https://github.com/starship/starship)
- [ogham/exa: 现代版本的“ ls”。](https://github.com/ogham/exa)
- [asciinema/asciinema: 终端会话记录器📹](https://github.com/asciinema/asciinema)
- [AnyStudy/PHP-7-Real-World-Application-Development: PHP 7:真实世界的应用开发](https://github.com/AnyStudy/PHP-7-Real-World-Application-Development)
- [youyingxiang/livewire-blog: laravel8 livewire建立博客😄](https://github.com/youyingxiang/livewire-blog)
- [rememberber/WePush: 专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信](https://github.com/rememberber/WePush)
### October 7, 2020
- [nkanaev/yarr: 另一个RSS阅读器](https://github.com/nkanaev/yarr)
- [antonkomarev/github-profile-views-counter: 它统计您的GitHub个人资料被查看了多少次。](https://github.com/antonkomarev/github-profile-views-counter)
- [arturssmirnovs/github-profile-views-counter: Github新功能自述文件视图计数器用Yii2框架制作。](https://github.com/arturssmirnovs/github-profile-views-counter)
- [faustbrian/bytebuffer: 使用本机数组@php的快速简单的ByteBuffer实现](https://github.com/faustbrian/bytebuffer)
- [beyondcode/forge-cli: 自以为是的Laravel Forge CLI工具](https://github.com/beyondcode/forge-cli)
- [smalot/pdfparser: PdfParser,一个独立的PHP库,提供了多种工具来从PDF文件提取数据。](https://github.com/smalot/pdfparser)
- [gautamkrishnar/motrix-webextension: Motrix下载管理器的Chrome扩展程序](https://github.com/gautamkrishnar/motrix-webextension)
- [gdtool/zhaopp: 一个Google Drive搜索引擎 https://zhao.pp.ua/](https://github.com/gdtool/zhaopp)
### September 30, 2020
- [Al1ex/Pentest-tools: 内网渗透工具](https://github.com/Al1ex/Pentest-tools)
- [SomeBottle/OdIndex: 从Heymind移植的Onedrive索引。](https://github.com/SomeBottle/OdIndex)
- [q191201771/pprofplus: 🍀 pprofplus用于采集Go进程的各项内存指标(包含Go runtime内存管理相关的,以及RSS等),并按时间维度绘制成折线图,可以通过网页实时查看。](https://github.com/q191201771/pprofplus)
- [nyancodeid/laravel-8-stisla-jetstream: Laravel 8 + Jetstream + Livewire + Stisla](https://github.com/nyancodeid/laravel-8-stisla-jetstream)
- [nanoninja/docker-nginx-php-mysql: Docker running Nginx, PHP-FPM, MySQL & PHPMyAdmin](https://github.com/nanoninja/docker-nginx-php-mysql)
### September 29, 2020
- [txperl/JustList: 天翼云盘、OneDrive 多用户文件列表工具](https://github.com/txperl/JustList)
- [Geal/nom: Rust分析器组合器框架](https://github.com/Geal/nom)
- [YanxinNet/uView: uView UI,是uni-app生态最优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水](https://github.com/YanxinNet/uView)
- [getkin/kin-openapi: Go的OpenAPI 3.0实现(解析,转换,验证等)](https://github.com/getkin/kin-openapi)
- [nette/neon: 🍸编码和解码NEON文件格式。](https://github.com/nette/neon)
- [dstotijn/hetty: Hetty是一个用于安全研究的HTTP工具包。它的目标是成为商业软件(如Burp suitepro)的开源替代品,具有针对infosec和bug悬赏社区的需求而定制的强大功能。](https://github.com/dstotijn/hetty)
- [incredibleindishell/SSRF_Vulnerable_Lab: 本实验包含易受服务器端请求伪造攻击的示例代码](https://github.com/incredibleindishell/SSRF_Vulnerable_Lab)
- [fatih/gomodifytags: 使用Go工具修改结构字段标签](https://github.com/fatih/gomodifytags)
- [git-lfs/git-lfs: 用于扩展大型文件的Git扩展](https://github.com/git-lfs/git-lfs)
- [guhongze/adminset: 自动化运维平台:CMDB、CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理](https://github.com/guhongze/adminset)
- [V7hinc/wooyun_final: 根据hanc00l和m0l1ce提供的数据构建docker版的乌云漏洞库,包含8.8W漏洞信息](https://github.com/V7hinc/wooyun_final)
- [michaeldzjap/laravel-two-factor-authentication: Laravel> = 8的两因素身份验证软件包](https://github.com/michaeldzjap/laravel-two-factor-authentication)
### September 28, 2020
- [lastguest/murmurhash-php: MurmurHash3的PHP用户区实现](https://github.com/lastguest/murmurhash-php)
- [lastguest/pixeler: CLI图像渲染器](https://github.com/lastguest/pixeler)
- [HongLuDianXue/BaiLu-SED-Tool: 白鹿社工字典生成器,灵活与易用兼顾。](https://github.com/HongLuDianXue/BaiLu-SED-Tool)
- [blushft/go-diagrams: 使用Go创建漂亮的系统图](https://github.com/blushft/go-diagrams)
- [Ferluci/fasthttp-realip: 快速从HTTP请求获取客户端ip](https://github.com/Ferluci/fasthttp-realip)
### September 27, 2020
- [jasonlewis/expressive-date: 流利的PHP DateTime类扩展。](https://github.com/jasonlewis/expressive-date)
- [wbt5/real-url: 获取斗鱼&虎牙&哔哩哔哩&抖音&快手等 48 个直播平台的真实流媒体地址(直播源)和弹幕,直播源可在 PotPlayer、flv.js 等播放器中播放。](https://github.com/wbt5/real-url)
- [DasSecurity-Labs/AoiAWD: AoiAWD-专为比赛设计,便携性好,低权限运行的EDR系统。](https://github.com/DasSecurity-Labs/AoiAWD)
- [nakabonne/ali: 生成HTTP负载并实时绘制结果](https://github.com/nakabonne/ali)
- [go-spring/go-spring: 基于 IoC 的 Go 后端一站式开发框架 🚀](https://github.com/go-spring/go-spring)
- [xxjwxc/gormt: mysql数据库转 struct 工具,可以将mysql数据库自动生成golang sturct结构,带大驼峰命名规则。带json标签](https://github.com/xxjwxc/gormt)
- [mikenicholson/passport-jwt: 使用JSON Web令牌的Passport身份验证](https://github.com/mikenicholson/passport-jwt)
- [hajimehoshi/oto: ♪ ♪一个可以在多个平台上播放声音的底层库♪ ♪](https://github.com/hajimehoshi/oto)
- [xiaohuangniu/26: PHP原生编写26种设计模式](https://github.com/xiaohuangniu/26)
- [material-shell/material-shell: 适用于Linux的现代桌面界面。](https://github.com/material-shell/material-shell)
### September 25, 2020
- [russross/blackfriday: a markdown processor for Go](https://github.com/russross/blackfriday)
- [mvdan/github-actions-golang: GitHub Actions作为Go的CI](https://github.com/mvdan/github-actions-golang)
- [colinodell/json5: 适用于PHP的UTF-8兼容JSON5解析器](https://github.com/colinodell/json5)
- [microcosm-cc/bluemonday: 一种快速的golang HTML清理程序(受OWASP Java HTML Sanitizer的启发)来清理用户生成的XSS内容](https://github.com/microcosm-cc/bluemonday)
- [json5/json5: JSON5 — JSON for humans](https://github.com/json5/json5)
- [HackBrowserData:hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|书签)的导出工具,支持全平台主流浏览器。](https://github.com/moonD4rk/HackBrowserData/blob/master/README_ZH.md)
- [emmanuelantony2000/valerie: 用于构建Web应用程序的Rust前端框架](https://github.com/emmanuelantony2000/valerie)
- [smallnest/rpcx: Go中的零成本,更快的多语言双向微服务框架](https://github.com/smallnest/rpcx)
- [hlissner/doom-emacs: An Emacs framework for the stubborn martian hacker](https://github.com/hlissner/doom-emacs)
- [pingcap-incubator/tinysql: 构建分布式数据库的SQL层的课程。](https://github.com/pingcap-incubator/tinysql)
- [laike9m/rsshub-zhihu-helper: 如果你希望通过 RSSHub 浏览知乎,那么这个项目或许可以帮到你。](https://github.com/laike9m/rsshub-zhihu-helper)
- [go-rod/rod: 一个Devtools驱动程序,可轻松实现Web自动化和抓取](https://github.com/go-rod/rod)
- [beyondcode/laravel-credentials: 将加密的凭据添加到您的Laravel生产环境。](https://github.com/beyondcode/laravel-credentials)
### September 24, 2020
- [git-cloner/gitcache: 从github.com克隆时,构建镜像缓存以提高克隆速度](https://github.com/git-cloner/gitcache)
- [sogou/workflow: 用于C ++后端开发的Sogou框架。](https://github.com/sogou/workflow)
- [gongjunhao/seckill: Chrome浏览器 抢购、秒杀插件,秒杀助手,定时自动点击](https://github.com/gongjunhao/seckill)
- [thombashi/sqlitebiter: 一个CLI工具,用于将CSV/Excel/HTML/JSON/Jupyter Notebook/LDJSON/LTSV/Markdown/SQLite/SSV/TSV/Google Sheets转换为SQLite数据库文件](https://github.com/thombashi/sqlitebiter)
### September 23, 2020
- [wangbjun/go-micloud: Go语言开发的小米云服务网盘命令行客户端](https://github.com/wangbjun/go-micloud)
- [mtownsend5512/progress: 一个PHP软件包,用于确定步骤和进度。](https://github.com/mtownsend5512/progress)
- [1c7/Translate-Subtitle-File: 🤖 字幕组机翻小助手 ](https://github.com/1c7/Translate-Subtitle-File)
- [reugn/go-streams: Go流处理库](https://github.com/reugn/go-streams)
- [alexedwards/scs: Go的HTTP会话管理](https://github.com/alexedwards/scs)
- [SuperPWA/Super-Progressive-Web-Apps: SuperPWA帮助您将WordPress网站立即转换为Progressive Web Apps。](https://github.com/SuperPWA/Super-Progressive-Web-Apps)
- [guiguiboy/PHP-CLI-Progress-Bar: guiguiboy/PHP-CLI-Progress-Bar: PHP5 CLI进度栏](https://github.com/guiguiboy/PHP-CLI-Progress-Bar)
- [ydtg1993/progress: php长时间循环任务进度展示](https://github.com/ydtg1993/progress)
- [dariuszp/cli-progress-bar: CLI应用程序的进度栏](https://github.com/dariuszp/cli-progress-bar)
### September 22, 2020
- [andreasbm/web-skills: 作为一个web开发人员需要学习的有用技能的视觉概述](https://github.com/andreasbm/web-skills)
- [osiset/laravel-shopify: 功能齐全的Laravel软件包,可帮助Shopify App开发](https://github.com/osiset/laravel-shopify)
- [lanyulei/ferry: 本系统是集工单统计、任务钩子、权限管理、灵活配置流程与模版等等于一身的开源工单系统,当然也可以称之为工作流引擎。](https://github.com/lanyulei/ferry)
- [stakater/Reloader: Kubernetes控制器可以监视ConfigMap和Secrets中的更改,并在Pod上使用与其关联的Deployment,StatefulSet,DaemonSet和DeploymentConfig – [✩Star](如果使用)进行滚动升级!](https://github.com/stakater/Reloader)
- [neuml/codequestion: 直接从终端询问编码问题](https://github.com/neuml/codequestion)
- [iamadamdev/bypass-paywalls-chrome: 绕过适用于Chrome和Firefox的Paywalls Web浏览器扩展。](https://github.com/iamadamdev/bypass-paywalls-chrome)
- [invoiceninja/invoiceninja: 使用Laravel和Flutter构建的发票,费用和任务](https://github.com/invoiceninja/invoiceninja)
### September 21, 2020
- [skyselang/yylAdmin: 基于ThinkPHP6和Element2的极简后台管理系统,只有登录注销、权限管理等基本功能,方便扩展;前后端分离。](https://github.com/skyselang/yylAdmin)
- [php-internal-research/yaphp: 手把手教你编写PHP编译器》](https://github.com/php-internal-research/yaphp)
- [tinygo-org/bluetooth: 跨平台蓝牙API for Go。](https://github.com/tinygo-org/bluetooth)
### September 19, 2020
- [alsofronie/eloquent-uuid: An Eloquent UUID Trait to use with Laravel 5.1 and 5.2](https://github.com/alsofronie/eloquent-uuid)
### September 18, 2020
- [tal-tech/gaea: Gaea是基于Gin的Web框架,参考gin gin-gonic / gin](https://github.com/tal-tech/gaea)
- [lindb/lindb: LinDB是一个可扩展的,高性能,高可用性的分布式时间序列数据库。](https://github.com/lindb/lindb)
- [JaidedAI/EasyOCR: 支持40种以上语言的即用型OCR](https://github.com/JaidedAI/EasyOCR)
- [barbushin/php-imap: 在PHP中管理邮箱,过滤/获取/删除电子邮件(支持IMAP / POP3 / NNTP)](https://github.com/barbushin/php-imap)
- [taseikyo/PyQt5-Apps: 谷歌翻译、bilibili视频下载、华科电费查询、猫耳FM音频下载、无损音乐下载、华科图书馆查询、词云生成器etc.](https://github.com/taseikyo/PyQt5-Apps)
- [geektutu/7days-golang: 7 days golang apps from scratch (web framework Gee, distributed cache GeeCache, object relational mapping ORM framework GeeORM etc) 7天用Go动手写/从零实现系列](https://github.com/geektutu/7days-golang)
- [awslabs/cdk8s: 使用面向对象的编程定义Kubernetes原生应用和抽象](https://github.com/awslabs/cdk8s)
- [coreybutler/nvm-windows: Windows的node.js版本管理实用程序。 具有讽刺意味的用Go语言编写。](https://github.com/coreybutler/nvm-windows)
- [http-party/http-server: 一个简单的零配置命令行http服务器](https://github.com/http-party/http-server)
### September 17, 2020
- [shebaoting/nxcrm: 基于laravel的客户管理系统(CRM)](https://github.com/shebaoting/nxcrm)
- [lra/mackup: 使您的应用程序设置保持同步(OS X / Linux)](https://github.com/lra/mackup)
- [dapr/dapr: Dapr是一种可移植的,事件驱动的运行时,用于跨云和边缘构建分布式应用程序。](https://github.com/dapr/dapr)
- [jawira/emoji-catalog: 可以访问+3300个表情符号作为类常量](https://github.com/jawira/emoji-catalog)
- [DOUBLE-Baller/momo: 直播源码,php直播,短视频,直播带货,仿比心,猎游](https://github.com/DOUBLE-Baller/momo)
- [gosuri/uiprogress: Go库,用于在终端应用程序中呈现进度条](https://github.com/gosuri/uiprogress)
- [devmount/faster-php: 测试提高PHP脚本性能的不同方法](https://github.com/devmount/faster-php)
### September 16, 2020
- [flameshot-org/flameshot: 功能强大但易于使用的屏幕截图软件](https://github.com/flameshot-org/flameshot)
- [blmoistawinde/HarvestText: 文本挖掘和预处理工具(文本清洗、新词发现、情感分析、实体识别链接、句法分析等),无监督或弱监督(种子词)方法](https://github.com/blmoistawinde/HarvestText)
- [imsnif/bandwhich: 终端带宽利用率工具](https://github.com/imsnif/bandwhich)
- [rspivak/lsbasi: 《让我们构建一个简单的解释器》系列的源代码(仅支持Python 3.7+)](https://github.com/rspivak/lsbasi)
- [douban/gobeansdb: 来自Douban Inc.的分布式对象存储服务器](https://github.com/douban/gobeansdb)
- [dbu/snake-bundle: 使用Symfony控制台实现的蛇游戏](https://github.com/dbu/snake-bundle)
- [joho/godotenv: Ruby的dotenv库的Go端口(从`.env`加载环境变量。)](https://github.com/joho/godotenv)
- [lwouis/alt-tab-macos: macOS上的Windows alt选项卡](https://github.com/lwouis/alt-tab-macos)
- [bdelespierre/laravel-blade-linter: A simple Blade template syntax checker for Laravel](https://github.com/bdelespierre/laravel-blade-linter)
### September 15, 2020
- [mxrch/darkshot: Lightshot scraper on steroids with OCR.](https://github.com/mxrch/darkshot)
- [fastai/fastmac: 在大约2分钟内免费获得MacOS或Linux Shell](https://github.com/fastai/fastmac)
- [huichen/sego: Go中文分词](https://github.com/huichen/sego)
- [we7coreteam/w7-rangine-project-document: 基于Rangine(软擎框架)的一款开源Markdown文档系统](https://github.com/we7coreteam/w7-rangine-project-document)
- [themsaid/laravel-mail-preview: 邮件驱动程序,用于将已发送的邮件保存到磁盘。](https://github.com/themsaid/laravel-mail-preview)
- [justjavac/what-happens-when-zh_CN: 当XXX时,到底发生了什么](https://github.com/justjavac/what-happens-when-zh_CN)
- [LycheeOrg/Lychee: 一个美观且易于使用的照片管理系统,可以在服务器上运行,以管理和共享照片。](https://github.com/LycheeOrg/Lychee)
- [mccarlosen/laravel-mpdf: 使用Mpdf在Laravel中生成pdf。](https://github.com/mccarlosen/laravel-mpdf)
### September 14, 2020
- [wongdean/rime-settings: 接近原生的鼠须管 Rime 配置](https://github.com/wongdean/rime-settings)
- [FiloSottile/age: 一个简单,现代且安全的加密工具(和Go库),具有小的显式密钥,无配置选项和UNIX风格的可组合性。](https://github.com/FiloSottile/age)
- [doczjs/docz: to记录您的东西从未如此简单!](https://github.com/doczjs/docz)
- [spatie/laravel-robots-middleware: Enable or disable the indexing of your app](https://github.com/spatie/laravel-robots-middleware)
- [simps: Simps 是一个简单、轻量并且拥有超高性能的PHP协程框架](https://gitee.com/simple-swoole/simps)
- [giscafer/leek-fund: 韭菜盒子——VSCode 里也可以看股票 & 基金实时数据,做最好用的养基插件 🐥](https://github.com/giscafer/leek-fund)
- [hotmeteor/eco-cli: 使用 Eco 来管理你的 Laravel 环境变量](https://github.com/hotmeteor/eco-cli)
### September 12, 2020
- [kangvcar/InfoSpider: INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。](https://github.com/kangvcar/InfoSpider)
- [beched/php_disable_functions_bypass: procfs-based PHP sandbox bypass](https://github.com/beched/php_disable_functions_bypass)
- [dominikh/go-tools: Staticcheck - The advanced Go linter](https://github.com/dominikh/go-tools)
- [shuchkin/simplexlsx: 从Excel XLSx文件解析和检索数据](https://github.com/shuchkin/simplexlsx)
- [tightenco/ziggy: 在JavaScript中使用Laravel命名的路由](https://github.com/tightenco/ziggy)
### September 11, 2020
- [aylei/kubectl-debug: 预先安装了所有故障排除工具的新容器调试Pod](https://github.com/aylei/kubectl-debug)
- [juicyfx/vercel-php: ▲ Vercel PHP runtime • vercel-php • now-php • 🐘+ λ = ❤](https://github.com/juicyfx/vercel-php)
- [juicyfx/vercel-examples: using使用Vercel平台(ZEIT Now)的示例和示例项目](https://github.com/juicyfx/vercel-examples)
- [acmephp/acmephp: 让我们用PHP编写的Encrypt / ACME命令行客户端](https://github.com/acmephp/acmephp)
- [calibreapp/image-actions: Github动作,可自动压缩“拉取请求”中的JPEG,PNG和WebP。](https://github.com/calibreapp/image-actions)
- [elibyy/tcpdf-laravel: 一个简单的Laravel服务提供者,具有一些基本配置,包括TCPDF库](https://github.com/elibyy/tcpdf-laravel)
- [read在自述文件中添加动态生成的GitHub Trophy](https://github.com/ryo-ma/github-profile-trophy)
- [thirdgerb/chatbot: 建立聊天机器人的框架,该机器人可以通过工程来处理复杂的多轮对话,例如建立网站或应用](https://github.com/thirdgerb/chatbot)
- [matomo-org/matomo-php-tracker: Matomo Analytics Tracking API的PHP客户端](https://github.com/matomo-org/matomo-php-tracker)
- [snowair/phalcon-debugbar: 用于Phalcon框架的功能强大的调试和分析器工具](https://github.com/snowair/phalcon-debugbar)
### September 10, 2020
- [音频/视频库和流服务器](https://github.com/nareix/joy4)
- [TestsLing/easy-im: 基于各大厂商IM开发的composer包](https://github.com/TestsLing/easy-im)
- [teddysun/lamp: Install LAMP(Linux + Apache + MySQL/MariaDB + PHP ) for CentOS/Debian/Ubuntu](https://github.com/teddysun/lamp)
- [aliyun/aliyun-oss-go-sdk: 适用于Go的Aliyun OSS SDK](https://github.com/aliyun/aliyun-oss-go-sdk)
- [arthaud/git-dumper: 从网站转储git存储库的工具](https://github.com/arthaud/git-dumper)
- [yajra/laravel-datatables-buttons: Laravel的jQuery数据表按钮插件。](https://github.com/yajra/laravel-datatables-buttons)
- [PanDownloadServer/Server: PanDownload的个人维护版本](https://github.com/PanDownloadServer/Server)
- [hluk/CopyQ: CopyQ是一个高级剪贴板管理器,具有编辑和脚本功能。](https://github.com/hluk/CopyQ)
- [CokeMine/ServerStatus-Hotaru: 云探针、多服务器探针、云监控、多服务器云监控](https://github.com/CokeMine/ServerStatus-Hotaru)
### September 9, 2020
- [用于PHP的QR代码生成器](https://github.com/Bacon/BaconQrCode)
- [⭐最受欢迎的Go Web框架](https://github.com/mingrammer/go-web-framework-stars)
- [Cloudflare CNAME 接入](https://github.com/ZE3kr/Cloudflare-CNAME-Setup/blob/master/README.zh.md)
- [基于Amp的PHP异步HTTP / 1.1 + 2客户端。](https://github.com/amphp/http-client)
- [opcache-gui](https://github.com/amnuts/opcache-gui)
### September 8, 2020
- [marcoax/maguttiCms: Laravel 7 CMS for Web Artisans](https://github.com/marcoax/maguttiCms)
- [georgysavva/scany: 用于将数据从数据库扫描到Go结构等的库](https://github.com/georgysavva/scany)
- [🇨🇳 《JavaScript 20 年》中文版](https://github.com/doodlewind/jshistory-cn)
- [ant-design/ant-design-mobile: A configurable Mobile UI](https://github.com/ant-design/ant-design-mobile)
### September 7, 2020
- [suricata-rules/suricata-rules: 用来检测红队渗透/恶意行为等,支持检测CobaltStrike/MSF/Empire/DNS隧道/Weevely/菜刀/冰蝎/挖矿/反弹shell/ICMP隧道等](https://github.com/suricata-rules/suricata-rules)
- [imroc/req: a golang http request library for humans](https://github.com/imroc/req)
- [ircmaxell/PHP-Yacc: PHP的kmyacc端口](https://github.com/ircmaxell/PHP-Yacc)
- [laravel/vapor-ui](https://github.com/laravel/vapor-ui)
- [hyperf/nano: Nano 是一款零配置、无骨架、极小化的 Hyperf 发行版,通过 Nano 可以让您仅仅通过 1 个 PHP 文件即可快速搭建一个 Hyperf 应用。](https://github.com/hyperf/nano)
- [knownsec/ksubdomain 无状态子域名爆破工具](https://github.com/knownsec/ksubdomain/tree/24445eed4f45b78b3b69a2f4b23d15f507e40cd0)
### September 4, 2020
- [一个Yii 2演示应用程序来说明Inertia.js的工作方式。](https://github.com/tbreuss/pingcrm-yii2)
- [MySQL8.0官方文档中文翻译](https://github.com/zhyee/Mysql8.0_Reference_Manual_Translation)
- [Laravel Fortify是Laravel的前端不可知身份验证后端。 Fortify支持Laravel Jetstream的注册,身份验证和两因素身份验证功能。](https://github.com/laravel/fortify)
- [将PHP类型转换为TypeScript](https://github.com/spatie/typescript-transformer)
- [PHP 7.4中的Laravel预加载测试](https://github.com/brendt/laravel-preload)
### September 3, 2020
- [硬件短信转发小工具](https://github.com/knownsec/gsm)
- [Apache RocketMQ Go客户端](https://github.com/apache/rocketmq-client-go)
- [MDClub 社区系统后端代码](https://github.com/zdhxiong/mdclub)
- [laravel-eloquent-join](https://github.com/fico7489/laravel-eloquent-join)
- [漂亮的Go语言通用后台管理框架,包含计划任务、MySQL管理、Redis管理、FTP管理、SSH管理、服务器管理、Caddy配置、云存储管理等功能。](https://github.com/admpub/nging)
- [使Docker管理变得容易。](https://github.com/portainer/portainer)
- [基于Amp的PHP并行处理。](https://github.com/amphp/parallel)
- [基于Amp的PHP的无阻塞套接字和TLS功能。](https://github.com/amphp/socket)
### September 2, 2020
- [🖥Chrome自动化变得简单。 在AWS Lambda上本地运行或无头运行。](https://github.com/prisma-archive/chromeless)
- [用于Reconmap的REST API后端](https://github.com/Reconmap/api-backend)
- [Laravel Jetstream是为Laravel设计的精美应用程序支架。 Jetstream为您的下一个Laravel应用程序提供了完美的起点,包括登录,注册,电子邮件验证,两因素身份验证,会话管理,通过Laravel Sanctum提供的API支持以及可选的团队管理。](https://github.com/laravel/jetstream)
- [Go 学习、Go 进阶、Go 实用工具类、Go-kit ,Go-Micro 微服务实践、Go 推送](https://github.com/hwholiday/learning_tools)
- [中国IP列表的Geoip MaxMind数据库!](https://github.com/alecthw/mmdb_china_ip_list)
- [具有自动JSON API的无头CMS。 具有来自Let's Encrypt的自动HTTPS,HTTP / 2 Server Push和Go编写的灵活服务器框架。](https://github.com/ponzu-cms/ponzu)
- [天真的go绑定到CPython C-API](https://github.com/sbinet/go-python)
- [php的采样探查器](https://github.com/sj-i/php-profiler)
- [ThinkPHP 6.0 与 Ant Design Pro Vue 基础前后分离权限系统](https://github.com/edenleung/think-admin)
- [ThinkPHP 与 Ant Design Pro Vue 基础权限系统](https://github.com/edenleung/think-ant-vue)
- [内部Windows渗透测试/与安全的自动化](https://github.com/S3cur3Th1sSh1t/WinPwn)
- [简而言之,solver-japha允许使用PHP编写Java代码并与JVM生态系统进行交互。](https://github.com/belgattitude/soluble-japha)
- [可溶性PHP / Java桥服务器(非官方fork)](https://github.com/belgattitude/php-java-bridge)
### September 1, 2020
- [jwt-hack是JWT黑客,安全测试实用程序](https://github.com/hahwul/jwt-hack)
- [一个基于GraphQL的Web应用程序,使用Go,React和MongoDB编写](https://github.com/Shpota/skmz)
- [使用IP-Tracer跟踪任何IP地址。 IP-Tracer是为Linux和Termux开发的。 您可以使用IP-Tracer检索任何IP地址信息。](https://github.com/rajkumardusad/IP-Tracer)
- [使用Docker Compose在Nginx上运行WordPress。](https://github.com/urre/wordpress-nginx-docker-compose)
- [免费的Laravel商业电子商务:购物车,CMS内容等...](https://github.com/s-cart/s-cart)
- [对go.crypto / ssh包的SFTP支持](https://github.com/pkg/sftp)
- [Official CORS gin's middleware](https://github.com/gin-contrib/cors)
- [> cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys #公钥加入authorized_keys文件](https://github.com/summertime-wu/make_cnblogs_better)
### August 31, 2020
- [自动登录京东,打卡领钢镚,签到领京豆](https://github.com/CaoZ/JD-Coin)
- [一个简单的嵌入式解决方案,用于为Eloquent模型的ID提供UUID支持。](https://github.com/goldspecdigital/laravel-eloquent-uuid)
- [一个简单的Laravel软件包,用于生成带有诸如到期时间,IP限制等选项的下载链接。](https://github.com/armancodes/laravel-download-link)
- [网页格式的简化工具](https://github.com/tdewolff/minify)
- [使用Laravel,Livewire,Tailwind CSS和Alpine JS的高级数据表](https://github.com/MedicOneSystems/livewire-datatables)
### August 29, 2020
- [敏感词查找,验证,过滤和替换](https://github.com/importcjj/sensitive)
- [生成数据库表结构说明文档](https://github.com/alicfeng/mysql_markdown)
- [一本学习Vim编辑器的书](https://github.com/iggredible/Learn-Vim)
- [优化的压缩包](https://github.com/klauspost/compress)
- [内置于Composer中的PHP REPL(使用PsySH)](https://github.com/ramsey/composer-repl)
- [将Shell命令转换为Web服务](https://github.com/beefsack/webify)
### August 28, 2020
- [准确查找在Laravel应用程序中调用特定数据库查询的位置。](https://github.com/fitztrev/query-tracer)
- [Laravel PHP Framework软件包,只需几个步骤即可向您的应用程序添加完整的实时聊天系统。](https://github.com/munafio/chatify)
- [适用于Laravel项目的灵活博客功能](https://github.com/bjuppa/laravel-blog)
- [基于Docker的仅开发依赖管理器](https://github.com/tightenco/takeout)
- [Laravel Cypress集成](https://github.com/laracasts/cypress)
- [将PHP数据转换为JavaScript。](https://github.com/laracasts/PHP-Vars-To-Js-Transformer)
- [gomock](https://github.com/golang/mock)
### August 27, 2020
- [php开发人员非常灵活的git hook manager](https://github.com/CaptainHookPhp/captainhook)
- [用于向GitHub添加功能的用户脚本](https://github.com/Mottie/GitHub-userscripts)
- [简单的Laravel队列速率限制](https://github.com/mxl/laravel-queue-rate-limit)
- [发送PHP错误到Flare](https://github.com/facade/flare-client-php)
- [生产级K8s的安装,升级和管理](https://github.com/kubernetes/kops)
- [将您的终端共享为Web应用程序](https://github.com/yudai/gotty)
- [查找最快的docker镜像](https://github.com/silenceshell/docker_mirror)
### August 26, 2020
- [Web仪表板以检查Terraform状态](https://github.com/camptocamp/terraboard)
- [Jennifer是Go的代码生成器](https://github.com/dave/jennifer)
- [eloquent-power-joins](https://github.com/kirschbaum-development/eloquent-power-joins)
- [通过SSH聊天。](https://github.com/shazow/ssh-chat)
- [用于存储库模式的文件自动生成器](https://github.com/mshamaseen/laravel-repository-pattern)
- [简单,快速,安全,平面文件CMS](https://github.com/bludit/bludit)
### August 25, 2020
- [Laravel UPSERT和INSERT IGNORE查询](https://github.com/staudenmeir/laravel-upsert)
- [微信互联网平民创业(初稿)](https://github.com/xiaolai/everyones-guide-for-starting-up-on-wechat-network)
### August 24, 2020
- [gin的快速应用脚手架](https://github.com/daodao97/egin)
- [非常全的古诗词数据,收录了从先秦到现代的共计85万余首古诗词。](https://github.com/Werneror/Poetry)
- [Laravel Nova工具来显示应用程序日志](https://github.com/spatie/nova-tail-tool)
### August 21, 2020
- [Kafka library in Go](https://github.com/segmentio/kafka-go)
- [这是psutil的端口(giampaolo / psutil)。 挑战在于在某些体系结构上移植所有psutil函数。](https://github.com/shirou/gopsutil)
- [ts-migrate是用于帮助将代码迁移到TypeScript的工具。](https://github.com/airbnb/ts-migrate)
- [在线书签管理工具](https://github.com/luchenqun/my-bookmark)
- [受python-prompt-toolkit启发,在Go中构建强大的交互式提示。](https://github.com/c-bata/go-prompt)
- [整理HTTP后台端的RESTful API方面的知识](https://github.com/crifan/http_restful_api)
- [API开发利器:Postman](https://github.com/crifan/api_tool_postman)
- [PHP语言初学者教程。](https://github.com/DanielHe4rt/php4noobs)
- [Open Web Analytics是商业工具(例如Google Analytics(分析))的开源替代方案。 控制您收集的有关网站或应用程序使用情况的数据。](https://github.com/Open-Web-Analytics/Open-Web-Analytics)
- [go pkg功能示例](https://github.com/astaxie/gopkg)
- [关于Linux内核的一些知识](https://github.com/0xAX/linux-insides)
### August 20, 2020
- [一个查询IP地理信息和CDN服务提供商的离线终端工具.](https://github.com/zu1k/nali)
- [TLS完全指南](https://github.com/k8sp/tls)
- [将键入的文本转换为逼真的笔迹!](https://github.com/alias-rahil/handwritten.js)
- [基于 amis 的后台项目前端模板](https://github.com/fex-team/amis-admin)
- [About 开源Go语言数值算法库](https://github.com/chfenger/goNum)
- [MOSN是边缘或服务网格的云本地代理。](https://github.com/mosn/mosn)
- [全国高校校徽字体图标库](https://github.com/lovefc/china_school_badge)
- [在终端中显示图像](https://github.com/sindresorhus/terminal-image-cli)
- [quarkcms/quark-admin](https://github.com/quarkcms/quark-admin)
### August 19, 2020
- [thinkphp6 ueditor插件](https://github.com/hbh112233abc/ueditor)
- [JavaScript函数,用于使用MD5哈希消息](https://github.com/pvorb/node-md5)
- [Umami是Google Analytics(分析)的一种简单,快速的网站分析替代方法。](https://github.com/mikecao/umami)
- [基于 Golang 类似知乎的私有部署问答应用 包含问答、评论、点赞、管理后台等功能](https://github.com/meloalright/guora)
- [Echarts-PHP一个PHP库,用作Echarts js库的包装器](https://github.com/hisune/Echarts-PHP)
- [用于Node.js的RSS,Atom和JSON Feed生成器,使内容联合变得简单直观! 🚀](https://github.com/jpmonette/feed)
- [Sarama是Apache Kafka 0.8及更高版本的Go库。](https://github.com/Shopify/sarama)
- [对Yii RESTful API框架的嵌套路由支持](https://github.com/tunecino/yii2-nested-rest)
- [IP地址查询服务](https://github.com/mpolden/echoip)
### August 18, 2020
- [bootkube-启动自托管的Kubernetes集群](https://github.com/kubernetes-sigs/bootkube)
- [⎈❏Kubernetes的终端和Web控制台](https://github.com/astefanutti/kubebox)
- [🏆 寻找你最值得关注的开源库](https://github.com/juejin-im/open-source)
- [建立聊天机器人的框架,该机器人可以通过工程来处理复杂的多轮对话,例如建立网站或应用](https://github.com/thirdgerb/chatbot)
- [与Go(golang)服务一起使用的守护程序包](https://github.com/takama/daemon)
### August 17, 2020
- [Go中的LevelDB键/值数据库。](https://github.com/syndtr/goleveldb)
- [Go的goroutine池](https://github.com/Jeffail/tunny)
- [Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB,ClickHouse,MySQL等服务的异构中间件](https://github.com/brokercap/Bifrost)
- [适用于PHP的简单SAML工具包](https://github.com/onelogin/php-saml)
- [渗透测试有关的POC、EXP、脚本、提权、小工具等](https://github.com/Mr-xn/Penetration_Testing_POC)
### August 15, 2020
- [为国人开源项目提供免费的子域名(自 2020 年 8 月起)](https://github.com/js-cool/js.cool)
- [使用键盘快捷键和捕捉区域在macOS上移动和调整窗口大小](https://github.com/rxhanson/Rectangle)
- [PandaOCR - 多功能OCR图文识别+翻译+朗读+弹窗+公式+表格+图床+搜图+二维码](https://github.com/miaomiaosoft/PandaOCR)
- [PHPUnit支持Sublime Text](https://github.com/gerardroche/sublime-phpunit)
- [基于Swoft+LayIM构建的聊天室](https://github.com/gaobinzhan/sl-im)
- [Hyperf Chat](https://github.com/komorebi-php/hyperf-chat)
- [golang版支付宝SDK!](https://github.com/ascoders/alipay)
### August 14, 2020
- [用 Vue.js 开发的跨三端应用](https://github.com/halfrost/vue-objccn)
- [1、我写的三十万字图解算法题典 2、100 张 IT 相关超清思维导图 3、100 篇大厂面经汇总 4、各语言编程电子书 100 本 5、](https://github.com/geekxh/hello-algorithm)
- [LeetCode-Go](https://github.com/halfrost/LeetCode-Go)
- [IP2Location Laravel Extension](https://github.com/ip2location/ip2location-laravel)
- [基于d2-admin的d2-crud,简化d2-crud配置,快速开发crud功能;](https://github.com/greper/d2-crud-plus)
### August 13, 2020
- [👻Unsplash API的官方PHP包装器](https://github.com/unsplash/unsplash-php)
- [使用vuejs使您的数据库简单,轻松和快速。](https://github.com/Codexshaper/laravel-database-manager)
- [轻巧,惯用且可组合的路由器,用于构建Go HTTP服务](https://github.com/go-chi/chi)
### August 12, 2020
- [Laravel Nova工具来备份您的应用程序](https://github.com/spatie/nova-backup-tool)
- [地址智能识别Pro(支持vue、小程序)/省市区街道四级联动(支持省市区街道/电话/邮编/姓名/身份证号识别)](https://github.com/wzc570738205/smartParsePro)
- [Go编程语言安全编码实践指南](https://github.com/OWASP/Go-SCP)
- [siGo的结构化,可插入日志记录。rupsen/logrus: Structured, pluggable logging for Go.](https://github.com/sirupsen/logrus)
- [自动解密工具](https://github.com/Ciphey/Ciphey)
- [Apple 生态 中 RSSHub 的辅助 App,和 RSSHub Radar 类似,他可以帮助你快速发现和订阅网站的 RSS。](https://github.com/Cay-Zhang/RSSBud)
- [生成一个精简的Go Web项目。](https://github.com/go-bootstrap/go-bootstrap)
- [开源网络钓鱼工具包](https://github.com/gophish/gophish)
- [Go的无痛中间件链接](https://github.com/justinas/alice)
- [基于终端的仪表板。](https://github.com/mum4k/termdash)
- [响应式WordPress主题专注于用户阅读体验](https://github.com/vtrois/kratos)
- [🔝 通过Serve酱自动发送微博、知乎、v2ex热门内容到微信](https://github.com/WangNingkai/ServerChan-Push)
- [手机群控 aiohttp 一键下发命令 wifi群控 群控4.0](https://github.com/langgithub/CloudControl)
### August 11, 2020
- [Taichi(太极)是一种为高性能计算机图形设计的编程语言。](https://github.com/taichi-dev/taichi)
- [一个很小的(〜400 B)的现代库,用于绑定。](https://github.com/jamiebuilds/tinykeys)
- [performance PHP性能工具可以按时间,内存使用率和数据库查询来分析您的脚本。 为Web,Web控制台和命令行界面支持Laravel和Composer。](https://github.com/bvanhoekelen/performance)
- [此扩展包装了非常出色的libui,为PHP 7提供了用于创建跨平台本机外观界面的API。](https://github.com/krakjoe/ui)
- [PHP语言的SDL(简单DirectMedia层)绑定。 该扩展允许您使用窗口,输入处理,事件等创建多媒体桌面应用程序。](https://github.com/Ponup/php-sdl)
### August 10, 2020
- [laravel-zip](https://github.com/zanysoft/laravel-zip)
- [该软件包提供了通用的mime类型检测接口以及基于finfo的实现。](https://github.com/thephpleague/mime-type-detection)
- [受Twitter雪花启发的分布式唯一ID生成器](https://github.com/sony/sonyflake)
- [受Twitter雪花启发的分布式唯一ID生成器](https://github.com/Sybio/GifFrameExtractor)
- [通过这个简单的软件包,可以轻松地向您的laravel项目中添加完整的Laravel博客(具有内置的管理面板和公共视图)。](https://github.com/WebDevEtc/BlogEtc)
- [平安银行支付SDK](https://github.com/wangsir0624/pingan_pay)
### August 8, 2020
- [getID3()](https://github.com/JamesHeinrich/getID3)
- [Google 两步登陆验证](https://github.com/Ghost-die/google-authenticator)
### August 7, 2020
- [mili 是一个开源的社区系统,界面优雅,功能丰富😛](https://github.com/shen100/mili)
- [go collection](https://github.com/chenhg5/collection)
- [React中的Vue,Vue中的React。 两者的无缝集成。](https://github.com/akxcv/vuera)
### August 6, 2020
- [Web界面,用于管理和访问Virtualbox计算机。](https://github.com/phpvirtualbox/phpvirtualbox)
- [用于Telegram BOT API的本机PHP包装器](https://github.com/TelegramBot/Api)
- [基于官方Telegram Bot API的PHP Telegram Bot](https://github.com/php-telegram-bot/core)
- [yii2-bot-telegram](https://github.com/akbarjoudi/yii2-bot-telegram)
### August 5, 2020
- [国内低代码平台从业者交流](https://github.com/taowen/awesome-lowcode)
- [保存/创建/删除源文件后,构建和(重新)启动Go Web应用程序。](https://github.com/gravityblast/fresh)
- [Peer-to-peer shared types](https://github.com/yjs/yjs)
### August 4, 2020
- [用来显示 markdown 文档的,基于 gin 框架的, go 语言开发的博客](https://github.com/broqiang/mdblog)
- [Laravel的主题和资产管理](https://github.com/FaCuZ/laravel-theme)
- [大咖说PHP](https://github.com/baiyutang/awesome-php-meetup)
- [通过PHPStan检测被禁止的代码](https://github.com/ekino/phpstan-banned-code)
### August 3, 2020
- [mac下PHP和web开发环境管理工具](https://github.com/xpf0000/BuildPhp/blob/master/README-CN.md)
- [简洁易用的C++11网络库 / 支持单机千万并发连接](https://github.com/yedf/handy)
- [这是一个极其复杂且几乎完全无用的浏览器嗅探库](https://github.com/WhichBrowser/Parser-PHP)
- [正则表达式](https://github.com/geongeorge/i-hate-regex)
### August 1, 2020
- [用于检测composer项目的第三方依赖组件是否存在安全漏洞。](https://github.com/momosecurity/mosec-composer-plugin)
- [ngx_http_lua_module-将Lua的功能嵌入到Nginx HTTP服务器中。](https://github.com/openresty/lua-nginx-module)
- [Go cli应用程序的多进度条](https://github.com/vbauerster/mpb)
- [🚴 炫酷的中文版本的 git commit emoji 🐛🎨✨ 🔥💄📝 🎉 命令行](https://github.com/tw93/cz-emoji-chinese)
- [PHP中的Unirest:简化的轻量级HTTP客户端库。](https://github.com/Kong/unirest-php)
- [git查询语言](https://github.com/filhodanuvem/gitql)
- [laravel5.8版本源码分析](https://github.com/immortalChensm/laravel5.8)
- [laravel最佳实践](https://github.com/alexeymezenin/laravel-best-practices/blob/master/chinese.md)
- [Laravel最佳实践中文版](https://github.com/kevinyan815/laravel_best_practices_cn)
- [Laravel核心代码学习](https://github.com/kevinyan815/Learning_Laravel_Kernel)
### July 31, 2020
- [基于Redis的,用于Laravel的全自动可扩展数据库缓存层](https://github.com/spiritix/lada-cache)
- [Golang 通用网络连接池](https://github.com/silenceper/pool)
### July 30, 2020
- [MeetingBar是用于日历会议(macOS 10.15+)的菜单栏应用程序。](https://github.com/leits/MeetingBar)
- [Fend是微小的Swoole / FPM引擎框架](https://github.com/tal-tech/fend)
### July 29, 2020
- [快速,低开销的Web框架,用于Node.js](https://github.com/fastify/fastify)
### July 28, 2020