forked from guanguans/favorite-link
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.md
1983 lines (1947 loc) · 212 KB
/
README.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)
### May 11, 2022
- [davidcole1340/ext-php-rs: 用于 Zend API 的绑定,以便在 Rust 中本地构建 PHP 扩展。](https://github.com/davidcole1340/ext-php-rs)
### May 10, 2022
- [chrislim2888/IP2Location-PHP-Module: 该模块是一个PHP模块,可以让用户查找国家、地区、城市、坐标、邮政编码、ISP、域名、时区、连接速度、IDD代码、区号、气象站代码、气象站名称、手机、 任何 IP 地址或主机名源自的使用类型、地址类型、IAB 类别等。](https://github.com/chrislim2888/IP2Location-PHP-Module)
### May 9, 2022
- [XZB-1248/Spark: Spark是一个基于网页UI、跨平台以及多功能的远程控制和监控工具,可以通过浏览器,随时随地监控和控制你的所有设备。](https://github.com/XZB-1248/Spark)
- [Buzz2d0/xssfinder: XSS discovery tool](https://github.com/Buzz2d0/xssfinder)
- [muesli/termenv: 为您的终端应用程序提供高级 ANSI 样式和颜色支持](https://github.com/muesli/termenv)
### May 7, 2022
- [zee-editor/zee: 用 Rust 编写的用于终端的现代文本编辑器](https://github.com/zee-editor/zee)
- [mit-pdos/biscuit: Biscuit 是用于 x86-64 CPU 的 Go 中的单片 POSIX 子集操作系统内核。](https://github.com/mit-pdos/biscuit)
- [marcocesarato/php-conventional-changelog: 一个 PHP 工具,用于从项目的提交消息和元数据生成变更日志,遵循传统的commits.org,并使用 semver.org 自动进行版本控制。](https://github.com/marcocesarato/php-conventional-changelog)
- [ramsey/conventional-commits: 用于根据常规提交规范创建和验证提交消息的 PHP 库。](https://github.com/ramsey/conventional-commits)
- [gnolang/gno: Gno language](https://github.com/gnolang/gno)
- [gnolang/gno: Gno language](https://github.com/gnolang/gno)
### May 6, 2022
- [andreapollastri/cipi: 像专业人士一样安装和管理您的服务器! 使用 Cipi,您无需成为系统管理员即可部署和管理由云 VPS 提供支持的网站和 PHP 应用程序。](https://github.com/andreapollastri/cipi)
### May 5, 2022
- [pulkitjalan/geoip: 带有 Laravel 支持的 Geoip 包装器](https://github.com/pulkitjalan/geoip)
- [pulkitjalan/google-apiclient: 支持云平台和 Laravel 的 Google api php 客户端包装器](https://github.com/pulkitjalan/google-apiclient)
- [sjlleo/netflix-verify: 流媒体NetFlix解锁检测脚本](https://github.com/sjlleo/netflix-verify)
- [dexidp/dex: 具有可插拔连接器的 OpenID Connect (OIDC) 身份和 OAuth 2.0 提供程序](https://github.com/dexidp/dex)
- [CareyWang/MyUrls: 你自己的网址缩短服务](https://github.com/CareyWang/MyUrls)
- [replicate/cog: 机器学习容器](https://github.com/replicate/cog)
- [alphadose/ZenQ: 一个线程安全的队列,比 golang 的原生通道更快,资源效率更高](https://github.com/alphadose/ZenQ)
- [eypsilon/browser-reload: 自动刷新/重新加载浏览器](https://github.com/eypsilon/browser-reload)
- [delight-im/PHP-Auth: PHP 的身份验证。 简单、轻便且安全。](https://github.com/delight-im/PHP-Auth)
- [lcvvvv/kscan: Kscan是一款纯go开发的全方位扫描器,具备端口扫描、协议检测、指纹识别,暴力破解等功能。](https://github.com/lcvvvv/kscan)
- [chevere/xr: PHP 的轻量级远程调试工具](https://github.com/chevere/xr)
- [sjwhitworth/golearn: Go 机器学习](https://github.com/sjwhitworth/golearn)
- [dsnet/try: Go 中的简化错误处理](https://github.com/dsnet/try)
- [dsnet/compress: 压缩相关的 Go 包的集合。](https://github.com/dsnet/compress)
- [chevere/chevere: 现代 PHP 的高质量库](https://github.com/chevere/chevere)
### April 29, 2022
- [Edujugon/PushNotification: PHP 和 Laravel 包用于向 Android 和 IOS 设备发送推送通知。](https://github.com/Edujugon/PushNotification)
- [vadimcn/vscode-lldb: 基于 LLDB 的 VSCode 的本地调试器扩展](https://github.com/vadimcn/vscode-lldb)
- [go-redis/redismock: Redis 客户端 Mock](https://github.com/go-redis/redismock)
- [Terry-Mao/gopush-cluster: Golang 推送服务器集群](https://github.com/Terry-Mao/gopush-cluster)
### April 28, 2022
- [bsm/redislock: 使用 Redis 简化分布式锁定实现](https://github.com/bsm/redislock)
### April 27, 2022
- [trufflesecurity/trufflehog: 到处查找凭据](https://github.com/trufflesecurity/trufflehog)
- [vearne/gin-timeout: Gin 框架的超时中间件](https://github.com/vearne/gin-timeout)
### April 26, 2022
- [loophp/nix-shell: 用于 PHP 开发的 Nix shell](https://github.com/loophp/nix-shell)
- [tonysm/tailwindcss-laravel: 这个包为 Laravel 应用程序包装了 Tailwind CSS 框架的独立可执行版本。](https://github.com/tonysm/tailwindcss-laravel)
- [aeraki-mesh/aeraki: 在服务网格中管理任何第7层协议。](https://github.com/aeraki-mesh/aeraki)
- [qcod/laravel-imageup: 使用干预图像为 Laravel eloquent 模型自动上传图像和文件,调整大小和裁剪](https://github.com/qcod/laravel-imageup)
### April 25, 2022
- [glebarez/cero: 从任意主机的 SSL 证书中抓取域名](https://github.com/glebarez/cero)
- [polarismesh/polaris: 服务发现和治理](https://github.com/polarismesh/polaris)
- [ForestAdmin/laravel-forestadmin: 🌱 Laravel Agent for Forest Admin](https://github.com/ForestAdmin/laravel-forestadmin)
### April 24, 2022
- [ggelashvili/learnphptherightway-outline: 学习 PHP The Right Way 系列大纲](https://github.com/ggelashvili/learnphptherightway-outline)
- [ethomson/git-recover: 恢复存储库中已删除的文件](https://github.com/ethomson/git-recover)
- [honghuangdc/soybean-admin: 漂亮清新的中后台管理模版](https://github.com/honghuangdc/soybean-admin)
- [adtac/commento: 一个快速、无臃肿的评论平台](https://github.com/adtac/commento)
- [alextanhongpin/go-rate: Reddit 使用的简单评分算法](https://github.com/alextanhongpin/go-rate)
### April 22, 2022
- [Brain-WP/BrainMonkey: 用于 PHP 函数和 WordPress 插件 API 的模拟实用程序](https://github.com/Brain-WP/BrainMonkey)
- [frodeborli/moebius: PHP > = 8.1的真协程,不用担心事件循环和回调。](https://github.com/frodeborli/moebius)
- [dengxiuqi/ChineseLyrics: 10W首中文歌词数据库](https://github.com/dengxiuqi/ChineseLyrics)
- [single-spa/single-spa: Single-spa 是一个将多个单页面应用聚合为一个整体应用的 JavaScript 微前端框架。](https://github.com/single-spa/single-spa)
- [BlueM/cliclick: 用于模拟鼠标和键盘事件的 macOS CLI 工具](https://github.com/BlueM/cliclick)
### April 21, 2022
- [coteditor/CotEditor: macOS 的轻量级纯文本编辑器](https://github.com/coteditor/CotEditor)
- [silan-liu/virtual-machine: 动手实现一个虚拟机](https://github.com/silan-liu/virtual-machine)
- [skx/monkey: 用 Go 编写的解释性语言](https://github.com/skx/monkey)
- [sasha-s/go-deadlock: go (golang) 中的在线死锁检测](https://github.com/sasha-s/go-deadlock)
- [overtrue/double-array-trie: Double Array Trie 的 PHP 实现。](https://github.com/overtrue/double-array-trie)
- [skx/evalfilter: 一个基于字节码的虚拟机,用于在 golang 项目中实现脚本/过滤支持。](https://github.com/skx/evalfilter)
### April 20, 2022
- [goreleaser/nfpm: 一个用 Go 编写的简单 deb、rpm 和 apk 打包器](https://github.com/goreleaser/nfpm)
- [swiftyapp/swifty: 🔑 免费离线密码管理器](https://github.com/swiftyapp/swifty)
- [EndBug/add-and-commit: 自动将工作流程中所做的更改直接提交到您的存储库](https://github.com/EndBug/add-and-commit)
- [hashicorp/memberlist: 用于基于 gossip 的成员资格和故障检测的 Golang 包](https://github.com/hashicorp/memberlist)
### April 19, 2022
- [VirgilClyne/iRingo: 解锁完整的 Apple功能和集成服务](https://github.com/VirgilClyne/iRingo)
- [adjust/rmq: 用 Go 编写并由 Redis 支持的消息队列系统](https://github.com/adjust/rmq)
- [cristalhq/jwt: 用于 Go 的安全、简单和快速的 JSON Web 令牌](https://github.com/cristalhq/jwt)
- [geekan/HowToLiveLonger: 程序员延寿指南](https://github.com/geekan/HowToLiveLonger)
- [colinodell/cookiecache: PHP 的分布式 PSR-16 缓存实现,使用浏览器 cookie 存储数据](https://github.com/colinodell/cookiecache)
- [maxmind/geoipupdate: GeoIP 更新客户端代码](https://github.com/maxmind/geoipupdate)
- [reactphp/dns: ReactPHP 的异步 DNS 解析器。](https://github.com/reactphp/dns)
- [Roboroads/laravel-tinker: 添加一种编写 php 并直接在 Laravel 的 Artisan Tinker 中运行的方法。](https://github.com/Roboroads/laravel-tinker)
- [kylekatarnls/business-time: Carbon mixin 处理工作日和营业时间](https://github.com/kylekatarnls/business-time)
### April 18, 2022
- [yuque-helper/yuque2book: 将你的语雀文档导出的工具](https://github.com/yuque-helper/yuque2book)
- [antonmedv/fx: 终端 JSON 查看器](https://github.com/antonmedv/fx)
- [Zhengqbbb/cz-git: 🔨 一个更加工程化、高度可定制的标准输出格式 commitizen 适配器。](https://github.com/Zhengqbbb/cz-git)
### April 15, 2022
- [huangz1990/redis-command-mindmap: Redis 命令脑图](https://github.com/huangz1990/redis-command-mindmap)
### April 14, 2022
- [gentee/gentee: 用于自动化的脚本编程语言。](https://github.com/gentee/gentee)
### April 13, 2022
- [Shopify/shopify-php-api: 这个库提供支持PHP Shopify应用](https://github.com/Shopify/shopify-php-api)
- [klauspost/cpuid: Go 的 CPU 功能识别](https://github.com/klauspost/cpuid)
### April 12, 2022
- [hanneskod/libmergepdf: 合并多个 pdf 文件的 PHP 库](https://github.com/hanneskod/libmergepdf)
- [rime/squirrel: 【鼠鬚管】Rime for macOS](https://github.com/rime/squirrel)
- [adnanh/webhook: webhook 是一个轻量级的传入 webhook 服务器,用于运行 shell 命令](https://github.com/adnanh/webhook)
- [yl2chen/cidranger: 在 Golang 快速查找 CIDR 的 IP](https://github.com/yl2chen/cidranger)
- [asseco-voice/laravel-custom-fields: 可扩展的 Laravel 模型,不需要额外的数据库属性](https://github.com/asseco-voice/laravel-custom-fields)
- [MacsiDigital/laravel-api-client: 用于构建 API 客户端的 Laravel 包](https://github.com/MacsiDigital/laravel-api-client)
- [mtvbrianking/laravel-xml: Laravel XML 支持; 中间件、响应和实用程序。](https://github.com/mtvbrianking/laravel-xml)
- [mehradsadeghi/laravel-filter-querystring: 轻而易举地根据 url 查询字符串参数过滤您的查询。](https://github.com/mehradsadeghi/laravel-filter-querystring)
### April 11, 2022
- [amphp/websocket-client: 基于 Amp 的 PHP 异步 WebSocket 客户端。](https://github.com/amphp/websocket-client)
- [amphp/http-server-router: Amp 的 HTTP 服务器的路由器。](https://github.com/amphp/http-server-router)
- [dlvhdr/gh-dash: gh cli 扩展以显示 PR 和问题的仪表板 - 可通过漂亮的 UI 进行配置。](https://github.com/dlvhdr/gh-dash)
- [go-goyave/goyave: 🍐 优雅的 Golang REST API 框架](https://github.com/go-goyave/goyave)
- [josephburnett/jd: JSON 差异和补丁](https://github.com/josephburnett/jd)
- [php-flasher/php-flasher: 🔔 Flasher 是一个功能强大且灵活的 Flash 通知系统,适用于 PHP、Laravel、Symfony](https://github.com/php-flasher/php-flasher)
- [smallnest/soar: SQL Optimizer And Rewriter. Fork自XiaoMi/soar, 精简代码以适合作为库引用](https://github.com/smallnest/soar)
### April 8, 2022
- [lonquan/easy-lark: 飞书开放平台 PHP SDK](https://github.com/lonquan/easy-lark)
- [lavary/crunz: 基于 PHP 的作业调度程序](https://github.com/lavary/crunz)
- [ucan-lab/laravel-dacapo: Laravel 迁移支持工具,始终在 schema.yml 上生成最新的迁移文件](https://github.com/ucan-lab/laravel-dacapo)
- [Askedio/laravel-soft-cascade: 使用 Laravel SoftDeletes 时的级联删除和恢复](https://github.com/Askedio/laravel-soft-cascade)
- [LaravelCollective/annotations: Laravel 框架的路由和事件注解](https://github.com/LaravelCollective/annotations)
- [amphp/byte-stream: 基于 Amp 的 PHP 无阻塞流抽象。](https://github.com/amphp/byte-stream)
- [kossa/laradminator: 将 Adminator 集成到 Laravel ](https://github.com/kossa/laradminator)
- [shuax/chrome_plus: Chrome 增强软件](https://github.com/shuax/chrome_plus)
- [Lexikos/AutoHotkey_L: AutoHotkey - 适用于 Windows 的宏创建和面向自动化的脚本实用程序。](https://github.com/Lexikos/AutoHotkey_L)
- [mohuishou/go-design-pattern: go 设计模式实现](https://github.com/mohuishou/go-design-pattern)
### April 7, 2022
- [GrahamCampbell/Result-Type: 结果类型的实现](https://github.com/GrahamCampbell/Result-Type)
- [hi-frameork/c-workerman: workerman C扩展版](https://github.com/hi-frameork/c-workerman)
- [quasilyte/phpgrep: PHP 代码的语法感知 grep。](https://github.com/quasilyte/phpgrep)
- [ClementTsang/bottom: 又一个跨平台图形进程/系统监视器。](https://github.com/ClementTsang/bottom)
- [smartcontractkit/chainlink: 分散oracle网络的节点,连接链上和链下计算](https://github.com/smartcontractkit/chainlink)
- [jvoisin/snuffleupagus: Php7和 php8的安全模块-清除 bug 类并虚拟修补其余部分!](https://github.com/jvoisin/snuffleupagus)
### April 6, 2022
- [Hansimov/csapp: 《深入理解计算机系统》中文电子版(原书第 3 版)与实验材料](https://github.com/Hansimov/csapp)
- [kitar/laravel-dynamodb: 基于 DynamoDB 的 Eloquent 模型和 Laravel 查询构建器。](https://github.com/kitar/laravel-dynamodb)
- [georgeboot/laravel-echo-api-gateway: 将 Laravel Echo 与 API Gateway Websocket 一起使用。 适用于 Bref.sh 和 Laravel Vapor。](https://github.com/georgeboot/laravel-echo-api-gateway)
- [smallnest/dive-to-gosync-workshop: 深入Go并发编程研讨课](https://github.com/smallnest/dive-to-gosync-workshop)
- [StevenBaby/onix: Onix - 操作系统实现](https://github.com/StevenBaby/onix)
- [nsnikhil/go-datastructures: 该项目旨在将众所周知和常用的数据结构移植/构建到 GO。](https://github.com/nsnikhil/go-datastructures)
- [akaunting/laravel-language: Laravel 的语言切换器包](https://github.com/akaunting/laravel-language)
- [Laravel-Backpack/Settings: Backpack 的应用程序设置界面](https://github.com/Laravel-Backpack/Settings)
- [gmponos/guzzle-log-middleware: 自动记录请求和响应的 Guzzle 中间件](https://github.com/gmponos/guzzle-log-middleware)
- [obiefy/api-response: 简单易用的 Laravel API 响应包装器。](https://github.com/obiefy/api-response)
- [swayok/alternative-laravel-cache: 替换 Laravel 的 redis 和文件缓存存储,正确实现标签的想法](https://github.com/swayok/alternative-laravel-cache)
- [geekcom/validator-docs: 使用 Laravel 验证 CPF、CNPJ、CNH、NIS、选举人头衔和国民健康卡。](https://github.com/geekcom/validator-docs)
- [seancheung/history: Laravel 的Eloquent模型历史跟踪](https://github.com/seancheung/history)
- [sajya/server: @laravel 框架的 JSON-RPC 2.0 API 服务器](https://github.com/sajya/server)
### April 2, 2022
- [projectdiscovery/nuclei: 基于简单 YAML 的 DSL 的快速且可定制的漏洞扫描器。](https://github.com/projectdiscovery/nuclei)
- [myzhan/boomer: 一个更好的 Locust 负载生成器,用 golang 编写。](https://github.com/myzhan/boomer)
- [qzfzz/php7-extension-dev-book: 《PHP扩展开发及内核应用》](https://github.com/qzfzz/php7-extension-dev-book)
- [Wilfred/difftastic: Difftastic 是一个实验性的差异工具,可以根据文件的语法比较文件。](https://github.com/Wilfred/difftastic)
- [mlocati/ip-lib: 用于处理 IPv4、IPv6 和 IP 范围的 PHP 库](https://github.com/mlocati/ip-lib)
- [tizis/laravel-comments: Laravel 应用程序的评论系统。](https://github.com/tizis/laravel-comments)
### April 1, 2022
- [dagger/dagger: 用于 CI/CD 管道的便携式开发工具包](https://github.com/dagger/dagger)
- [matryer/moq: go generate 的接口模拟工具](https://github.com/matryer/moq)
- [fruitcake/php-cors: 用于 Symfony/Laravel 请求的 CORS(跨源资源共享)](https://github.com/fruitcake/php-cors)
- [voku/portable-ascii: 🔡 可移植的 ASCII 库 - PHP 的性能优化(ascii)字符串函数。](https://github.com/voku/portable-ascii)
- [phpWhois/phpWhois: phpWhois 通用存储库](https://github.com/phpWhois/phpWhois)
### March 31, 2022
- [attackercan/regexp-security-cheatsheet: 正则表达式安全备忘单](https://github.com/attackercan/regexp-security-cheatsheet)
- [archtechx/jobpipeline: 将任何一系列工作变成 Laravel 监听器。](https://github.com/archtechx/jobpipeline)
- [arthurkushman/php-wss: Web-socket 服务器/客户端](https://github.com/arthurkushman/php-wss)
- [andersao/laravel-validator: Laravel 验证服务](https://github.com/andersao/laravel-validator)
- [Pullword-永久免费的基于深度学习的中文在线分词API](http://www.pullword.com/)
### March 30, 2022
- [flower-corp/lotusdb: 快速 k/v 存储兼容 lsm 树和 b + 树,灵感来自 SLM-DB 在 USENIX FAST’19。](https://github.com/flower-corp/lotusdb)
- [go-redis/cache: 带有 Redis 后端的 Golang 缓存库](https://github.com/go-redis/cache)
- [vmware-tanzu/carvel-ytt: YAML 模板工具,适用于 YAML 结构而不是文本](https://github.com/vmware-tanzu/carvel-ytt)
### March 29, 2022
- [jurosh/php-pdf-merge: PHP 的 PDF 合并库](https://github.com/jurosh/php-pdf-merge)
- [octeep/wireproxy: Wireguard客户端,将自身暴露为socks5代理](https://github.com/octeep/wireproxy)
- [elliotchance/pie: 用于处理切片和映射的实用程序库,专注于类型安全和性能。](https://github.com/elliotchance/pie)
- [yoanbernabeu/Cronify: 简单地监测你的Cron](https://github.com/yoanbernabeu/Cronify)
- [imTigger/laravel-job-status: 添加跟踪作业进度、状态和分派到队列的结果的能力。](https://github.com/imTigger/laravel-job-status/tree/master)
### March 28, 2022
- [Bytom/bytom: Bytom 协议的官方 Go 实现](https://github.com/Bytom/bytom)
- [fortytw2/leaktest: Goroutine 漏洞检测器](https://github.com/fortytw2/leaktest)
- [lib/pq: 用于数据库/sql 的纯 Go Postgres 驱动程序](https://github.com/lib/pq)
- [decomp/decomp: 反编译管道的组件。](https://github.com/decomp/decomp)
- [guanguans/design-patterns-php: 设计模式 PHP 示例代码。](https://github.com/guanguans/design-patterns-php)
### March 26, 2022
- [Textalk/websocket-php: PHP中的WebSocket客户端和服务器](https://github.com/Textalk/websocket-php)
### March 25, 2022
- [charlieuki/receipt-printer: 用于集成 ECS/POS 打印驱动程序的 Laravel 包](https://github.com/charlieuki/receipt-printer)
- [LarsWiegers/laravel-translations-checker: 不要再担心错过翻译了! 使用翻译检查器。](https://github.com/LarsWiegers/laravel-translations-checker)
- [onflow/cadence: Cadence,面向资源的智能合约编程语言🏃♂️](https://github.com/onflow/cadence)
- [hidehalo/nanoid-php: PHP 实现 Nanoid,安全 url 友好的唯一 ID 生成器](https://github.com/hidehalo/nanoid-php)
- [brittonhayes/pillager: 用 Go 掠夺敏感信息的文件系统。](https://github.com/brittonhayes/pillager)
- [ai/nanoid: 一个微型的(130字节) ,安全的,url 友好的,独特的 JavaScript 字符串 ID 生成器](https://github.com/ai/nanoid)
- [tencent-connect/botgo: QQ频道机器人 GOSDK](https://github.com/tencent-connect/botgo)
### March 24, 2022
- [spatie/laravel-http-logger: 在 Laravel 应用程序中记录 HTTP 请求](https://github.com/spatie/laravel-http-logger)
- [sairson/Yasso: 强大的内网渗透辅助工具集](https://github.com/sairson/Yasso)
- [chrusty/protoc-gen-jsonschema: Protobuf到JSON模式编译器](https://github.com/chrusty/protoc-gen-jsonschema)
- [colinodell/indentation: 用于检测和操作字符串和文件缩进的 PHP 库](https://github.com/colinodell/indentation)
- [smalot/cups-ipp: IPP-PHP 客户端 API 的 CUPS 实现](https://github.com/smalot/cups-ipp)
- [anlutro/laravel-settings: Laravel 中的持久化设置](https://github.com/anlutro/laravel-settings)
- [Flynsarmy/laravel-db-blade-compiler: 从 Eloquent 模型字段中渲染 Blade 模板](https://github.com/Flynsarmy/laravel-db-blade-compiler)
### March 23, 2022
- [nawarian/raylib-ffi: 使用 FFI 的用于 PHP 的 Raylib 绑定。](https://github.com/nawarian/raylib-ffi)
### March 22, 2022
- [libp2p/go-libp2p: Go 中的 libp2p 实现](https://github.com/libp2p/go-libp2p)
### March 21, 2022
- [kopia/kopia: 适用于 Windows、macOS 和 Linux 的跨平台备份工具,具有快速增量备份、客户端端到端加密、压缩和重复数据删除功能。 包括 CLI 和 GUI。](https://github.com/kopia/kopia)
- [serialx/hashring: golang 中一致的散列“散列”实现(使用与 libketama 相同的算法)](https://github.com/serialx/hashring)
- [mitchellh/mapstructure: Go库,用于将通用映射值解码为本机Go结构,反之亦然。](https://github.com/mitchellh/mapstructure)
- [osrg/gobgp: 用 Go 编程语言实现的 BGP](https://github.com/osrg/gobgp)
### March 19, 2022
- [kriswallsmith/spork: 用于 fork PHP 的实验库](https://github.com/kriswallsmith/spork)
- [duncan3dc/fork-helper: 用于 fork 进程并允许多线程的 PHP 助手](https://github.com/duncan3dc/fork-helper)
### March 18, 2022
- [xiaoxuan6/laravel-ali-green: laravel 阿里鉴黄包括文本、图片、视频,关键词文本检测以及对图片涉黄、暴恐、敏感检测、广告、二维码视频色情、暴恐涉政视频等](https://github.com/xiaoxuan6/laravel-ali-green)
- [uptrace/go-clickhouse: Go 的 ClickHouse 客户端](https://github.com/uptrace/go-clickhouse)
- [CodeEditApp/CodeEdit: 适用于 macOS 的 CodeEdit 应用程序](https://github.com/CodeEditApp/CodeEdit)
### March 17, 2022
- [gzuidhof/tygo: 从 Golang 源代码生成 Typescript 类型](https://github.com/gzuidhof/tygo)
- [coduo/php-matcher: 将 JSON/PlainText/XML 等数据结构与可读模式匹配的最简单方法。 沙盒:](https://github.com/coduo/php-matcher)
### March 16, 2022
- [furqansiddiqui/erc20-php: 与任何 erc20标准的 Ethereum 令牌进行交互](https://github.com/furqansiddiqui/erc20-php)
- [InfuseAI/ArtiV: 管理大型文件的版本控制系统。](https://github.com/InfuseAI/ArtiV)
- [WsdlToPhp/PackageGenerator: 生成一个基于 WSDL 的 PHP SDK,简单而强大,WSDL 到 PHP](https://github.com/WsdlToPhp/PackageGenerator/releases)
- [mohammad-fouladgar/laravel-mobile-verification: 该软件包提供了制作令牌代码、发送和验证手机验证请求的便捷方法。](https://github.com/mohammad-fouladgar/laravel-mobile-verification)
- [amiranagram/localizator: 扫描你的 Laravel 项目并生成准备好翻译成所选语言的语言文件。](https://github.com/amiranagram/localizator)
- [xiam/to: Go 的激进数据类型转换](https://github.com/xiam/to)
### March 15, 2022
- [phpjuice/opencf: 基于(加权斜率、余弦、加权余弦)评级的协同过滤方案的PHP实现。](https://github.com/phpjuice/opencf)
- [rule110-io/surge: Surge 是一款 p2p 文件共享应用程序,旨在利用区块链技术实现 100% 匿名文件传输。 Surge 是端到端加密、去中心化和开源的。](https://github.com/rule110-io/surge)
- [btelle/ethereum-php: 以太坊 API 的 PHP 接口](https://github.com/btelle/ethereum-php)
- [btelle/ethereum-php: 以太坊 API 的 PHP 接口](https://github.com/btelle/ethereum-php)
### March 14, 2022
- [guregu/dynamo: 用于 Go 的富有表现力的 DynamoDB 库](https://github.com/guregu/dynamo)
- [bakame-php/http-structured-fields: PHP 中 HTTP 操作的结构化字段值](https://github.com/bakame-php/http-structured-fields)
- [Mateodioev/musixmatch](https://github.com/Mateodioev/musixmatch)
### March 11, 2022
- [tenantcloud/laravel-boolean-softdeletes](https://github.com/tenantcloud/laravel-boolean-softdeletes)
- [disintegration/gift: Go 图像过滤工具包](https://github.com/disintegration/gift)
### March 10, 2022
- [TomWright/dasel: 使用一个工具从 JSON、 TOML、 YAML、 XML 和 CSV 文件中选择、放置和删除数据。支持格式间的转换,可以作为 Go 包使用。](https://github.com/TomWright/dasel)
- [broadway/broadway: 用于创建 CQRS 和事件源应用程序的基础架构和测试帮助程序。](https://github.com/broadway/broadway)
- [php-fp/php-fp-maybe: PHP 中 Maybe monad 的实现。](https://github.com/php-fp/php-fp-maybe)
- [haskellcamargo/php-maybe-monad: Maybe monad in PHP](https://github.com/haskellcamargo/php-maybe-monad)
- [hoaproject/Option: The Hoa\Option library.](https://github.com/hoaproject/Option)
- [pmorelli92/maybe: Maybe 是一个 Go 包,为 Option 类型结构提供基本功能](https://github.com/pmorelli92/maybe)
- [antfu/vscode-file-nesting-config: VS Code 的文件嵌套配置](https://github.com/antfu/vscode-file-nesting-config)
### March 9, 2022
- [karminski/pineapple: pineapple lang 是一个简单的编程语言 demo. 它包含了个手写的递归下降解析器和一个简单的解释器](https://github.com/karminski/pineapple)
- [YianAndCode/pineapple-php: pineapple lang 是一个简单的编程语言 demo。它包含了个手写的递归下降解析器和一个简单的解释器。](https://github.com/YianAndCode/pineapple-php)
- [karminski/write-a-programming-language-in-450-lines: 本教程教大家用 450 行 Go 代码实现一个简单的编程语言](https://github.com/karminski/write-a-programming-language-in-450-lines)
- [auula/bottle: Bottle 是一个基于 LSM-TREE 的轻量级 kv 存储引擎。](https://github.com/auula/bottle)
- [andybalholm/brotli: 纯 Go Brotli 编码器和解码器](https://github.com/andybalholm/brotli)
### March 8, 2022
- [JustSteveKing/LaravelPostcodes: postcodes.io 的服务包装器](https://github.com/JustSteveKing/LaravelPostcodes)
- [carloswph/configurable: 可配置的接口,它的抽象类实现和一个 trait (很快)。](https://github.com/carloswph/configurable)
- [carloswph/tonton: 一系列基于 traits 的工具,它们简化了单例、多例和其他类实例控制器的使用。](https://github.com/carloswph/tonton)
- [antihax/optional: go的可选参数](https://github.com/antihax/optional)
- [Dgame/php-optional: 类似 Rust 的 PHP 可选类型](https://github.com/Dgame/php-optional)
- [markphelps/optional: Optional 是可选 Go 类型的库](https://github.com/markphelps/optional)
- [prometheus/alertmanager: Alertmanager 处理由 Prometheus 服务器等客户端应用程序发送的警报。 ](https://github.com/prometheus/alertmanager)
### March 7, 2022
- [JackonYang/money-maker-apps: 我认为有赚钱能力的开源小程序、个人网站](https://github.com/JackonYang/money-maker-apps)
- [samber/lo: 💥 基于 Go 1.18+ 泛型(map、filter、contains、find...)的 Lodash 风格的 Go 库](https://github.com/samber/lo)
- [sroze/messenger-enqueue-transport: 使用带 Symfony 的 Messenger 组件的 Enqueue。](https://github.com/sroze/messenger-enqueue-transport)
- [Soft/iter: iter 是 Go 的通用迭代器库](https://github.com/Soft/iter)
- [bnkamalesh/goapp: 构建和开发 Go Web 应用程序/服务的自以为是的指南](https://github.com/bnkamalesh/goapp)
- [BrainMaestro/envman: 轻松管理您的 .env 配置](https://github.com/BrainMaestro/envman)
### March 4, 2022
- [samber/lo: 💥 基于 Go 1.18+ 泛型(map、filter、contains、find...)的 Lodash 风格的 Go 库](https://github.com/samber/lo)
- [oschwald/geoip2-golang: 用于 Go 的非官方 MaxMind GeoIP2 阅读器](https://github.com/oschwald/geoip2-golang)
### March 3, 2022
- [tianmingyun/MasterBitcoin2CN: 《精通区块链编程第二版》](https://github.com/tianmingyun/MasterBitcoin2CN)
- [smallnest/dive-to-gosync-workshop: 深入Go并发编程研讨课](https://github.com/smallnest/dive-to-gosync-workshop)
- [nicksnyder/go-i18n: 将你的 Go 程序翻译成多种语言。](https://github.com/nicksnyder/go-i18n)
### March 2, 2022
- [mgechev/revive: 🔥 ~ 6 倍更快、更严格、可配置、可扩展且美观的 golint 替代品](https://github.com/mgechev/revive)
- [chenjiandongx/sniffer: 🤒 现代替代网络流量嗅探器。](https://github.com/chenjiandongx/sniffer)
- [MasterRO94/laravel-mail-viewer: 轻松登录和查看浏览器发出的电子邮件。](https://github.com/MasterRO94/laravel-mail-viewer)
- [spatie/laravel-varnish: 这个包提供了一种在 Laravel 中使用 Varnish 4(或 5)的简单方法](https://github.com/spatie/laravel-varnish)
- [go-shiori/shiori: 使用 Go 构建的简单书签管理器](https://github.com/go-shiori/shiori)
### March 1, 2022
- [Torann/laravel-currency: 这为 Laravel 提供了使用最新汇率的货币格式和转换等货币功能。](https://github.com/Torann/laravel-currency)
- [maize-tech/laravel-encryptable: 通过有说服力的查询轻松地匿名敏感数据](https://github.com/maize-tech/laravel-encryptable)
- [tray-labs/laravel-influxdb: 在 Laravel 中使用 InfluxDB 的 Lib](https://github.com/tray-labs/laravel-influxdb)
- [woai3c/MIT6.828: 实现一个操作系统内核](https://github.com/woai3c/MIT6.828)
- [woai3c/nand2tetris: 计算机系统要素-从零开始构建现代计算机](https://github.com/woai3c/nand2tetris)
- [monitoror/monitoror: 统一监控墙板ーー轻便、符合人体工程学及可靠的监控。](https://github.com/monitoror/monitoror)
### February 28, 2022
- [Laravel-Backpack/LangFileManager: 用于编辑 Laravel 语言文件的快速界面,适用于 Backpack。](https://github.com/Laravel-Backpack/LangFileManager)
- [sanmai/later: 稍后: 一个延迟的对象管理器。不需要回调](https://github.com/sanmai/later)
- [OndraM/ci-detector: 检测持续集成环境并获取当前构建的信息](https://github.com/OndraM/ci-detector)
- [rindow/rindow-neuralnetworks: 用于 PHP 机器学习的神经网络库](https://github.com/rindow/rindow-neuralnetworks)
- [getlantern/systray: Systemray 是一个跨平台的 Go 库,用于在通知区域放置图标和菜单。](https://github.com/getlantern/systray)
- [s9e/RegexpBuilder: S9e RegexpBuilder 是一个单用途的库,它生成与字符串列表匹配的正则表达式。](https://github.com/s9e/RegexpBuilder)
- [zencodex/package-make: 创建 PHP 或 laravel 软件包/插件,你可以用许多独立的 laravel 软件包管理大型项目。](https://github.com/zencodex/package-make)
### February 25, 2022
- [BinarCode/laravel-restify: 使用 Laravel 制作强大的 JSON:API 兼容的 Rest API 的最快方法。](https://github.com/BinarCode/laravel-restify)
- [schappim/macOCR: 将屏幕上的任何文本放入剪贴板。](https://github.com/schappim/macOCR)
- [go-ozzo/ozzo-validation: 一个惯用的 Go (golang) 验证包。](https://github.com/go-ozzo/ozzo-validation)
- [go-ozzo/ozzo-di: 一个实现依赖注入容器的 Go 包](https://github.com/go-ozzo/ozzo-di)
- [aceld/libevent: <Libevent深入浅出>本书要求有一定的服务并发编程基础,了解select和epoll等多路I/O复用机制。](https://github.com/aceld/libevent)
- [ofabry/go-callvis: 使用 Graphviz 可视化 Go 程序的调用图](https://github.com/ofabry/go-callvis)
- [nacos-group/nacos-sdk-go: Golang 中的 Nacos 客户端](https://github.com/nacos-group/nacos-sdk-go)
- [blugelabs/bluge: Go 的索引库](https://github.com/blugelabs/bluge)
### February 24, 2022
- [rinvex/cortex: Rinvex Cortex 是企业解决方案的坚实基础,它提供了一个灵活且可扩展的架构,用于构建具有内容管理、主题视图、应用程序模块等的多语言、多租户应用程序。](https://github.com/rinvex/cortex)
- [oz/tz: 一个时区助手](https://github.com/oz/tz)
- [worksome/exchange: 查看 Laravel 中任何货币的汇率。](https://github.com/worksome/exchange)
- [antlabs/timer: 高性能定时器(5级时间轮)[从零实现]](https://github.com/antlabs/timer)
- [google/mtail: 从应用程序日志中提取内部监控数据以收集到时间序列数据库中](https://github.com/google/mtail)
- [Insolita/yii2-array-structure-validator: 验证复杂的数组结构](https://github.com/Insolita/yii2-array-structure-validator)
- [bramus/router: 一个轻量级且简单的面向对象的 PHP 路由器](https://github.com/bramus/router)
- [CosmosContracts/juno: 可互操作智能合约的开源平台](https://github.com/CosmosContracts/juno)
- [mr-tron/base58: 在 golang 上快速实现 base58 编码。](https://github.com/mr-tron/base58)
- [liran-co/laravel-notification-subscriptions: Laravel 通知的订阅管理。](https://github.com/liran-co/laravel-notification-subscriptions)
- [hoaproject/Compiler: 该库允许操作 LL(1) 和 LL(k) 编译器。 最后一种提供了专门的语法描述语言:PP语言。](https://github.com/hoaproject/Compiler)
- [leafo/lessphp: 用 PHP 编写的 LESS 编译器](https://github.com/leafo/lessphp)
- [leafo/scssphp: 用 PHP 编写的 SCSS 编译器](https://github.com/leafo/scssphp)
- [ircmaxell/filterus: 一个简单的 PHP 过滤库](https://github.com/ircmaxell/filterus)
- [icewind1991/SMB: smbclient 的 PHP 包装器](https://github.com/icewind1991/SMB)
- [jerodev/flysystem-v3-smb-adapter: 适用于 SMB 的 Flysystem v3 适配器](https://github.com/jerodev/flysystem-v3-smb-adapter)
### February 23, 2022
- [mehdi-fathi/eloquent-filter: Eloquent Filter是一个通过查询字符串过滤模型数据的包。易于使用,完全动态。](https://github.com/mehdi-fathi/eloquent-filter)
- [YaoApp/yao: Yao 一个用于创建 Web 服务和仪表板的低代码引擎。](https://github.com/YaoApp/yao)
- [dave/dst: 装饰语法树 - 以完美的保真度操纵 Go 源代码。](https://github.com/dave/dst)
- [target/goalert: 开源待命安排、自动升级和通知,因此您不会错过任何重要警报](https://github.com/target/goalert)
- [mroth/weightedrand: Go 的快速加权随机选择。](https://github.com/mroth/weightedrand)
- [albrow/fo: 一种为 Go 添加函数式编程特性的实验性语言。](https://github.com/albrow/fo)
### February 22, 2022
- [shimohq/mogo: Clickhouse 的轻量级网络日志可视化分析平台。](https://github.com/shimohq/mogo)
- [spatie/laravel-visit: 在你的 Laravel 应用中快速访问任何路由](https://github.com/spatie/laravel-visit)
- [martinvonz/jj: 一个与 Git 兼容的 DVCS,既简单又强大](https://github.com/martinvonz/jj)
- [archtechx/enums: 使 PHP 枚举更可爱的助手。](https://github.com/archtechx/enums)
- [GuoYaxiang/craftinginterpreters_zh: 手撸解释器教程](https://github.com/GuoYaxiang/craftinginterpreters_zh)
### February 21, 2022
- [Mrs4s/go-cqhttp: cqhttp的golang实现,轻量、原生跨平台.](https://github.com/Mrs4s/go-cqhttp)
- [Mrs4s/MiraiGo: qq协议的golang实现, 移植于mirai](https://github.com/Mrs4s/MiraiGo)
- [myokyawhtun/PDFMerger: PDFMerger 与 PHP 5、PHP 7 和 PHP 8 兼容](https://github.com/myokyawhtun/PDFMerger)
- [freshbitsweb/laravel-log-enhancer: 通过向 laravel 日志中添加更多数据来简化调试](https://github.com/freshbitsweb/laravel-log-enhancer)
- [davidhsianturi/blade-bootstrap-icons: 一个可以在 Laravel Blade 视图中轻松使用 Bootstrap 图标的包](https://github.com/davidhsianturi/blade-bootstrap-icons)
- [Nexmo/nexmo-laravel: 使用此 Laravel 服务提供程序将 Vonage 功能(例如 SMS 和语音呼叫)添加到您的 Laravel 应用程序。](https://github.com/Nexmo/nexmo-laravel)
- [inspector-apm/inspector-laravel: 将你的 Laravel 应用程序连接到 Inspector。](https://github.com/inspector-apm/inspector-laravel)
- [babenkoivan/elastic-adapter: 官方 PHP Elasticsearch 客户端的适配器](https://github.com/babenkoivan/elastic-adapter)
- [mohorev/yii2-upload-behavior: Yii 2 的文件/图像上传行为](https://github.com/mohorev/yii2-upload-behavior)
- [JackieDo/Laravel-Log-Reader: Laravel 的日志阅读器和管理工具](https://github.com/JackieDo/Laravel-Log-Reader)
- [mtownsend5512/response-xml: Laravel 的 Response 类缺少 XML 支持。](https://github.com/mtownsend5512/response-xml)
- [crazybooot/base64-validation: Laravel 的 base64 验证规则集](https://github.com/crazybooot/base64-validation)
- [hoverwinter/HIT-OSLab: S - 哈工大《操作系统》实验](https://github.com/hoverwinter/HIT-OSLab)
### February 18, 2022
- [roach-php/laravel: 用于 Roach 的 Laravel 适配器,用于 PHP 的完整 Web 抓取工具包。](https://github.com/roach-php/laravel)
- [Seldaek/signal-handler: 简单的 unix 信号处理程序,在 Windows 上静默失败,便于跨平台开发](https://github.com/Seldaek/signal-handler)
- [Evertras/go-interface-examples:使用 Go 接口编写更清晰、更可测试的代码的一些示例。](https://github.com/Evertras/go-interface-examples)
- [alecthomas/kong: Kong 是 Go 的命令行解析器](https://github.com/alecthomas/kong)
- [alecthomas/kingpin: Go (golang) 命令行和标志解析器](https://github.com/alecthomas/kingpin)
- [otiai10/ocrserver: 一个简单的 OCR API 服务器](https://github.com/otiai10/ocrserver)
- [otiai10/gosseract: 使用 Tesseract c + + 库实现了光学字符识别的 Go 包](https://github.com/otiai10/gosseract)
- [LaravelLegends/pt-br-validator: 该库为 Laravel 添加了巴西验证](https://github.com/LaravelLegends/pt-br-validator)
- [codedge/laravel-selfupdater: 这个包提供了一些基本的方法来为你的 Laravel 应用程序实现自我更新功能。](https://github.com/codedge/laravel-selfupdater)
### February 17, 2022
- [dcasia/collapsible-resource-manager: 带有可折叠组的自定义侧边栏菜单](https://github.com/dcasia/collapsible-resource-manager)
- [AnonymousAAArdvark/qi: 用中文编写的轻量级快速编程语言。](https://github.com/AnonymousAAArdvark/qi)
- [ava-labs/avalanchego: 雪崩节点的 Go 实现。](https://github.com/ava-labs/avalanchego)
- [permafrost-dev/php-code-search: 从 PHP 中搜索函数和方法调用、变量等的 PHP 源代码。](https://github.com/permafrost-dev/php-code-search)
### February 16, 2022
- [seiflotfy/cuckoofilter: Cuckoo 过滤器](https://github.com/seiflotfy/cuckoofilter)
- [agiledragon/gomonkey: gomonkey 是一个让单元测试中的猴子补丁变得简单的库](https://github.com/agiledragon/gomonkey)
- [elliotchance/dingo: 🐺 Go 的简单、快速和类型安全的依赖注入。](https://github.com/elliotchance/dingo)
- [Vonng/ac: 带有双数组 Trie (go 中的多模式替代)的 Aho-Corasick 自动机](https://github.com/Vonng/ac)
- [jpfuentes2/php-activerecord: PHP 的 ActiveRecord 实现](https://github.com/jpfuentes2/php-activerecord)
### February 15, 2022
- [ryangjchandler/laravel-json-settings: 将您的 Laravel 应用程序设置存储在磁盘上的 JSON 文件中。 ⚙️](https://github.com/ryangjchandler/laravel-json-settings)
- [GeneaLabs/laravel-mixpanel: 直观的插入式分析。](https://github.com/GeneaLabs/laravel-mixpanel)
- [leMaur/eloquent-publishing: 轻松使您的雄辩模型可发布。](https://github.com/leMaur/eloquent-publishing)
- [Jxckaroo/laravel-state-machine: 一个简单的 laravel 状态机,用于处理模型转换,基于预定义的规则列表。](https://github.com/Jxckaroo/laravel-state-machine)
- [lithammer/shortuuid: 🍄 简洁、明确和 URL 安全的 UUID 的生成器库](https://github.com/lithammer/shortuuid)
- [lithammer/fuzzysearch: 🐷 Go 中微小而快速的模糊搜索](https://github.com/lithammer/fuzzysearch)
- [glhd/gretel: 童话故事中的 Laravel 面包屑](https://github.com/glhd/gretel)
- [alecthomas/inject: Go的guice式依赖注入。](https://github.com/alecthomas/inject)
### February 14, 2022
- [sun0225SUN/Awesome-Love-Code: 表白代码收藏馆,谁说程序猿不懂浪漫。](https://github.com/sun0225SUN/Awesome-Love-Code)
- [ARCANEDEV/Support: 支持包是一个用于ARCANEDEV + Laravel项目的助手和工具集合。](https://github.com/ARCANEDEV/Support)
- [r-darwish/idnt: 批量卸载软件](https://github.com/r-darwish/idnt)
- [spatie/github-actions-watcher: 一个CLI工具,可以实时查看你所有GitHub行动工作流程的状态](https://github.com/spatie/github-actions-watcher)
- [nats-io/nats-streaming-server: NATS流媒体系统服务器](https://github.com/nats-io/nats-streaming-server)
- [projectdiscovery/dnsx: dnsx是一个快速和多用途的DNS工具包,允许运行多个你选择的DNS查询,并有一个用户提供的解析器列表](https://github.com/projectdiscovery/dnsx)
- [Code-Hex/pget: 最快的文件下载客户端](https://github.com/Code-Hex/pget)
- [jorenvh/laravel-share: Laravel 生成社交分享链接的可选包。](https://github.com/jorenvh/laravel-share)
- [ttacon/libphonenumber: 谷歌的libphonenumber的golang端口](https://github.com/ttacon/libphonenumber)
- [jasonmccreary/laravel-test-assertions: 一组在测试Laravel应用程序时有用的断言.](https://github.com/jasonmccreary/laravel-test-assertions)
- [GeneaLabs/laravel-pivot-events:此包为 BelongsToMany 和 MorphToMany 关系上的 sync()、attach()、detach() 或 updateExistingPivot() 方法引入了新的 eloquent 事件。](https://github.com/GeneaLabs/laravel-pivot-events)
- [GeneaLabs/laravel-messenger: 提供一个落地的、应用范围内的警报功能,以响应用户的行动,向他们显示各种类型的警报和通知。](https://github.com/GeneaLabs/laravel-messenger)
- [GeneaLabs/laravel-governor: 在你的Laravel应用程序中用基于角色的细化权限来管理授权。](https://github.com/GeneaLabs/laravel-governor)
- [ARCANEDEV/LaravelSettings: 📂 这个包允许你持久化 Laravel 项目的配置/设置。](https://github.com/ARCANEDEV/LaravelSettings)
- [soketi/soketi: 只是另一个简单、快速、有弹性的开源WebSockets服务器。](https://github.com/soketi/soketi)
- [dromara/hertzbeat: 易用友好的高性能监控告警系统。网站监测,PING连通性,端口可用性,数据库监控,API监控,自定义监控,阈值告警,告警通知。](https://github.com/dromara/hertzbeat)
- [GoogleChromeLabs/text-app: 适用于 ChromeOS 和 Chrome 的文本编辑器](https://github.com/GoogleChromeLabs/text-app)
### February 11, 2022
- [oleiade/trousseau: 基于文件的加密键值存储](https://github.com/oleiade/trousseau)
- [worksome/envy: 保持你的.env.example文件是最新的](https://github.com/worksome/envy)
- [Ecodev/graphql-upload: 一个PSR-15中间件,支持GraphQL中的文件上传](https://github.com/Ecodev/graphql-upload)
- [neoshiftlab/tree: 这个包提供了一个树形结构。](https://github.com/neoshiftlab/tree)
- [fluent/fluent-logger-php: 一个用于Fluentd的结构化日志记录器(PHP)](https://github.com/fluent/fluent-logger-php)
- [bestony/mbdpay: 面包多支付(mbd.pub) PHP SDK](https://github.com/bestony/mbdpay)
- [google/go-querystring: go-querystring 是 Go 库,用于将结构编码为 URL 查询字符串。](https://github.com/google/go-querystring)
- [kbjr/Git.php: 一个PHP的git库](https://github.com/kbjr/Git.php)
- [cebe/php-openapi: 读取和写入OpenAPI yaml/json文件,并使内容可以在PHP对象中访问。](https://github.com/cebe/php-openapi)
### February 10, 2022
- [hammerstonedev/sidecar: 从你的Laravel应用程序中部署和执行AWS Lambda函数。](https://github.com/hammerstonedev/sidecar)
- [stefanzweifel/sidecar-browsershot: 一个Sidecar函数,用于在Lambda上运行Browsershot。](https://github.com/stefanzweifel/sidecar-browsershot)
- [fanpei91/torsniff: torsniff - 一个嗅探器,可以嗅探BitTorrent网络中的torrents。](https://github.com/fanpei91/torsniff)
- [jeanphorn/log4go: 一个类似于log4j或log4c++的golang日志包,支持控制台、文件和网络。](https://github.com/jeanphorn/log4go)
- [symplify/vendor-patches: 用一个命令为软件包生成供应商补丁。](https://github.com/symplify/vendor-patches)
- [ObuchiYuki/DevToysMac: Mac版DevToys](https://github.com/ObuchiYuki/DevToysMac)
### February 9, 2022
- [ryangjchandler/laravel-uuid: 一个用于向Eloquent模型添加UUIDs的小包。](https://github.com/ryangjchandler/laravel-uuid)
- [spewerspew/spew: 为Go数据结构实施深度漂亮打印机,以帮助调试。](https://github.com/spewerspew/spew)
- [prolic/PhpDisruptor: 高性能线程间消息传递库](https://github.com/prolic/PhpDisruptor)
- [smarty-prototypes/go-disruptor: 将LMAX Disruptor移植到Go语言。](https://github.com/smarty-prototypes/go-disruptor)
- [yireyun/go-queue: 高性能的无锁队列(Disruptor 1400/s)。](https://github.com/yireyun/go-queue)
### February 8, 2022
- [opendialogai/core: OpenDialog是一个帮助你设计、开发、部署和管理聊天机器人的平台--或者我们喜欢称之为对话式应用程序。](https://github.com/opendialogai/core)
- [huandu/go-sqlbuilder: 一个灵活而强大的SQL字符串生成器库和一个零配置的ORM。](https://github.com/huandu/go-sqlbuilder)
- [antecedent/patchwork: PHP 的方法重定义(猴子补丁)功能。](https://github.com/antecedent/patchwork)
- [roach-php/core: 完整的 PHP 网页抓取工具包。](https://github.com/roach-php/core)
- [Hi-Folks/gh-actions-yaml-generator: Ghygen是一个GitHub Actions配置器,适用于你的PHP / Laravel项目。](https://github.com/Hi-Folks/gh-actions-yaml-generator)
- [Hi-Folks/lara-lens: 用于显示诊断的Laravel包(配置、数据库、http连接...)。](https://github.com/Hi-Folks/lara-lens)
- [Hi-Folks/statistics: 提供计算数字数据的数学统计功能的PHP包。](https://github.com/Hi-Folks/statistics)
- [EventSaucePHP/ObjectHydrator: 这是一个将结构化请求数据(例如:解码的 JSON)转换为复杂对象结构的实用程序。 此实用程序的预期用途是接收请求数据并将其转换为命令或查询对象。](https://github.com/EventSaucePHP/ObjectHydrator)
- [php-mqtt/client: 一个用PHP编写的MQTT客户端。](https://github.com/php-mqtt/client)
- [cortesi/modd: 一个灵活的开发者工具,可以运行进程并对文件系统的变化做出反应](https://github.com/cortesi/modd)
### February 7, 2022
- [42wim/matterbridge: 在mattermost、IRC、gitter、xmpp、slack、discord、telegram、rocketchat、twitch、ssh-chat、zulip、whatsapp、keybase、matrix、microsoft teams、nextcloud、mumble、vk和更多的REST API之间搭建桥梁](https://github.com/42wim/matterbridge)
- [nicoverbruggen/phpmon: 轻量级,原生的Mac菜单栏应用程序,与Laravel Valet互动。](https://github.com/nicoverbruggen/phpmon)
- [IrineSistiana/mosdns: 一个 DNS 转发器?](https://github.com/IrineSistiana/mosdns)
- [hfpp2012/railstart-niceadmin: 基于Bootstrap 5和NiceAdmin以及Rails 7的后端管理仪表板管理系统](https://github.com/hfpp2012/railstart-niceadmin)
- [gera2ld/markmap: 使用 Markmap 将您的 Markdown 可视化为思维导图。](https://github.com/gera2ld/markmap)
### February 1, 2022
- [raitonoberu/sptlrx: 在你的终端中的Spotify歌词。](https://github.com/raitonoberu/sptlrx)
- [mritd/gitflow-toolkit: 一个用于GitFlow的简单工具包。](https://github.com/mritd/gitflow-toolkit)
- [AdaoPedro/php-openssl-proxy: 一个围绕OpenSSL扩展的PHP包装器,为处理OpenSSL提供一个用户友好的界面。](https://github.com/AdaoPedro/php-openssl-proxy)
### January 31, 2022
- [orlangure/gocovsh: Go Coverage in Shell:一个从命令行探索Go Coverage报告的工具。](https://github.com/orlangure/gocovsh)
### January 29, 2022
- [go-piv/piv-go: YubiKeys的密钥和证书,用Go语言编写](https://github.com/go-piv/piv-go)
- [charmbracelet/soft-serve: 一个美味的、可自我托管的命令行Git服务器](https://github.com/charmbracelet/soft-serve)
- [aphiria/aphiria: 一个简单、可扩展的PHP REST API框架](https://github.com/aphiria/aphiria)
- [go-validator/validator: 包验证器实现了结构字段验证](https://github.com/go-validator/validator/tree/v2)
### January 28, 2022
- [klauspost/readahead: Go 阅读器的异步预读](https://github.com/klauspost/readahead)
- [ajimoti/cache-duration: 一种生成 PHP 缓存时间的可读且流畅的方式。](https://github.com/ajimoti/cache-duration)
- [jm33-m0/emp3r0r: linux用户制作的Linux/Windows后开发框架](https://github.com/jm33-m0/emp3r0r)
### January 27, 2022
- [qifengzhang007/GinSkeleton: 基于go语言gin框架封装的web项目骨架](https://github.com/qifengzhang007/GinSkeleton)
- [akaunting/laravel-apexcharts: Laravel 的 ApexCharts 包](https://github.com/akaunting/laravel-apexcharts)
- [icloud-photos-downloader/icloud_photos_downloader: 从 iCloud 下载照片的命令行工具](https://github.com/icloud-photos-downloader/icloud_photos_downloader)
- [mohammad-fouladgar/eloquent-builder: 这个包为 Laravel 或 Lumen 模型提供了一个基于传入请求的高级过滤器。](https://github.com/mohammad-fouladgar/eloquent-builder)
### January 26, 2022
- [maize-tech/laravel-helpers: 这个存储库包含一些对大多数使用 Laravel 的应用程序有用的帮助器](https://github.com/maize-tech/laravel-helpers)
- [DarthSim/overmind: Overmind 是基于 Procfile 的应用程序和 tmux 的进程管理器。](https://github.com/DarthSim/overmind)
- [doekenorg/iterator-functions: 一个为迭代器提供类似“array_*”函数的包。](https://github.com/doekenorg/iterator-functions)
- [XIU2/CloudflareSpeedTest: 测试 Cloudflare CDN 延迟和速度,获取最快 IP (IPv4+IPv6)!](https://github.com/XIU2/CloudflareSpeedTest)
- [microsoft/go-winio: Go 的 Win32 IO 相关实用程序](https://github.com/microsoft/go-winio)
- [PGYER/codefever: CodeFever 社区版(自托管 Git 服务)](https://github.com/PGYER/codefever)
### January 25, 2022
- [dosco/graphjin: GraphJin - 使用 GraphQL 在 5 分钟内构建 API. 即时 GraphQL 到 SQL 编译器。](https://github.com/dosco/graphjin)
- [mk-j/PHP_XLSXWriter: Lightwight XLSX Excel电子表格编写器(PHP)](https://github.com/mk-j/PHP_XLSXWriter)
- [ariga/atlas: 数据库工具包](https://github.com/ariga/atlas)
- [cespare/xxhash: 64 位 xxHash 算法 (XXH64) 的 Go 实现](https://github.com/cespare/xxhash)
- [Hi-Folks/rando-php: RandoPhp 是一个开源库,它实现了随机生成器(整数、字符、字节、序列、布尔值)并从数组中获取随机样本](https://github.com/Hi-Folks/rando-php)
- [adahead/apple-search-ad](https://github.com/adahead/apple-search-ad)
### January 24, 2022
- [weaveworks/ignite: Weave Ignite 是一个开源虚拟机 (VM) 管理器,具有容器 UX 和内置 GitOps 管理。](https://github.com/weaveworks/ignite)
- [tmdh/laravel-kit: 一个桌面 Laravel 管理面板应用](https://github.com/tmdh/laravel-kit)
- [containers/podman: Podman(POD MANager)是一种用于管理容器和镜像、安装到这些容器中的卷以及由容器组组成的 pod 的工具。](https://github.com/containers/podman)
- [cockroachdb/apd: Go 的任意精度小数](https://github.com/cockroachdb/apd)
- [up9inc/mizu: Kubernetes 的 API 流量查看器使您能够查看微服务之间的所有 API 通信。 想想为 Kubernetes 重新发明的 TCPDump 和 Wireshark](https://github.com/up9inc/mizu)
- [montanaflynn/stats: 一个经过良好测试且全面的 Golang 统计库包,没有依赖项。](https://github.com/montanaflynn/stats)
### January 21, 2022
- [dflydev/dflydev-dot-access-data: 给定一个表示配置的深层数据结构,通过点符号访问配置。](https://github.com/dflydev/dflydev-dot-access-data)
- [dflydev/git-subsplit: 自动化和简化管理单向只读子树拆分的过程。](https://github.com/dflydev/git-subsplit)
- [dflydev/dflydev-placeholder-resolver: 提供从任意数据源解析占位符的机制。](https://github.com/dflydev/dflydev-placeholder-resolver)
- [dflydev/dflydev-apache-mime-types: Apache MIME 类型](https://github.com/dflydev/dflydev-apache-mime-types)
- [dflydev/dflydev-finite-state-machine: 又一个有限状态机实现](https://github.com/dflydev/dflydev-finite-state-machine)
- [io-developer/php-whois: PHP WHOIS 提供域和 ASN 路由的解析和原始 whois 查找。 ](https://github.com/io-developer/php-whois)
- [llir/llvm: 用于在纯 Go 中与 LLVM IR 交互的库。](https://github.com/llir/llvm)
- [tetratelabs/wazero: wazero 允许您运行具有零平台依赖性的 WebAssembly 模块](https://github.com/tetratelabs/wazero)
- [akutz/go-generics-the-hard-way: Go 泛型入门的实践方法。](https://github.com/akutz/go-generics-the-hard-way)
- [glhd/laravel-dumper: 使用特定于Laravel的改进升级dd()](https://github.com/glhd/laravel-dumper)
- [iancoleman/orderedmap: orderedmap 是一个 golang 映射,其中的键保持添加的顺序。](https://github.com/iancoleman/orderedmap)
- [goal-web/querybuilder: 一个像 Laravel 那样好用的查询构造器。](https://github.com/goal-web/querybuilder)
- [Sammyjo20/Saloon: 一个 Laravel/PHP 包,可让您以美观、标准化的语法编写 API 集成。](https://github.com/Sammyjo20/Saloon)
- [ryangjchandler/cpx: 从任何地方快速执行Composer包二进制文件。⚡️](https://github.com/ryangjchandler/cpx)
### January 20, 2022
- [CanerErgez/laravel-state-machine: 简单的 Laravel 状态机系统](https://github.com/CanerErgez/laravel-state-machine)
- [KurtBestor/Hitomi-Downloader: 🍰 桌面实用程序,用于从各种网站下载图像/视频/音乐/文本等。](https://github.com/KurtBestor/Hitomi-Downloader)
- [shellhub-io/shellhub: 💻 无缝远程访问任何 Linux 设备。 用于边缘计算和云计算的集中式 SSH](https://github.com/shellhub-io/shellhub)
### January 19, 2022
- [CodisLabs/codis: 基于代理的 Redis 集群解决方案,支持管道和动态扩展](https://github.com/CodisLabs/codis)
- [everFinance/goar: 用 Go 实现的 Arweave http 客户端和钱包](https://github.com/everFinance/goar)
- [shunfei/cronsun: 一个分布式的、容错的 Cron 式作业系统。](https://github.com/shunfei/cronsun)
### January 18, 2022
- [mattkingshott/snowflake: 用于创建 Twitter 雪花标识符的包](https://github.com/mattkingshott/snowflake)
- [mattkingshott/waterfall: 批量执行级联删除以缓解数据库压力的包](https://github.com/mattkingshott/waterfall)
- [mattkingshott/elevate: 一个为各种 Laravel 组件提供宏函数库的包。](https://github.com/mattkingshott/elevate)
- [hyperledger/fabric: Hyperledger Fabric 是一个企业级许可分布式账本框架,用于开发解决方案和应用程序。](https://github.com/hyperledger/fabric)
- [open-falcon/falcon-plus: 一个开源的企业级监控系统。](https://github.com/open-falcon/falcon-plus)
- [googleapis/api-linter: 协议缓冲区中定义的 API 的 linter。](https://github.com/googleapis/api-linter)
- [sivan/heti: 赫蹏(hètí)是专为中文内容展示设计的排版样式增强。它基于通行的中文排版规范而来,可以为网站的读者带来更好的文章阅读体验。](https://github.com/sivan/heti)
- [youyingxiang/laravel-plugin: 基于laravel的插件机制](https://github.com/youyingxiang/laravel-plugin)
### January 17, 2022
- [iotexproject/iotex-core: Go中IoTeX区块链协议的正式实施。](https://github.com/iotexproject/iotex-core)
- [jszwec/csvutil: csvutil 在 CSV 和 Go (golang) 值之间提供快速且惯用的映射。](https://github.com/jszwec/csvutil)
- [tdewolff/canvas: Go 中的 Cairo:矢量到光栅、SVG、PDF、EPS、WASM、OpenGL、Gio 等。](https://github.com/tdewolff/canvas)
- [one-key-hidpi/README-zh.md: 一键开启 macOS HiDPI](https://github.com/xzhih/one-key-hidpi/blob/master/README-zh.md)
- [gin-contrib/sessions: 用于会话管理的Gin中间件](https://github.com/gin-contrib/sessions)
- [DarkCoderSc/PowerRemoteDesktop: 远程桌面完全在PowerShell中编码。](https://github.com/DarkCoderSc/PowerRemoteDesktop)
- [alyssaxuu/omni: 提高生产力的多合一工具⌨️](https://github.com/alyssaxuu/omni)
### January 14, 2022
- [spatie/laravel-csp: 在 Laravel 应用程序中设置内容安全策略标头](https://github.com/spatie/laravel-csp)
- [optiv/Ivy: Ivy 是一个有效载荷创建框架,用于直接在内存中执行任意 VBA(宏)源代码。 ](https://github.com/optiv/Ivy)
- [etcd-io/bbolt: Go 的嵌入式键/值数据库。](https://github.com/etcd-io/bbolt)
- [Jeiwan/blockchain_go: Golang 中的简化区块链实现](https://github.com/Jeiwan/blockchain_go)
- [ivbeg/awesome-status-pages: 很棒的状态页面列表,开源软件、在线服务和主要互联网公司的公共状态页面](https://github.com/ivbeg/awesome-status-pages)
### January 13, 2022
- [spatie/laravel-signal-aware-command: 在artisan命令中处理信号](https://github.com/spatie/laravel-signal-aware-command)
- [diglactic/laravel-breadcrumbs: Laravel Breadcrumbs - 一种简单的 Laravel 风格的创建面包屑的方法。](https://github.com/diglactic/laravel-breadcrumbs)
- [hashicorp/raft: Raft 共识协议的 Golang 实现](https://github.com/hashicorp/raft)
- [pirsch-analytics/pirsch: Pirsch 是适用于 Go 的嵌入式、服务器端、无 cookie 和以隐私为重点的分析解决方案。](https://github.com/pirsch-analytics/pirsch)
- [AlexAkulov/clickhouse-backup: 通过云存储支持轻松进行 ClickHouse 备份和恢复的工具](https://github.com/AlexAkulov/clickhouse-backup)
- [charmbracelet/wish: 制作SSH应用程序,就像那样!💫](https://github.com/charmbracelet/wish)
### January 12, 2022
- [segmentio/asm: Go 库提供优化的算法以利用现代 CPU 的特性](https://github.com/segmentio/asm)
- [canbez/dcat-theme: Dcat admin 主题插件](https://github.com/canbez/dcat-theme)
- [rhysd/gocaml: 🐫 使用 Go 和 LLVM 的实用静态类型函数式编程语言实现](https://github.com/rhysd/gocaml)
- [lanyi1998/DNSlog-GO: DNSLog-GO 是一款golang编写的监控 DNS 解析记录的工具,自带WEB界面](https://github.com/lanyi1998/DNSlog-GO)
- [go-workflow/go-workflow: go版本极简工作流引擎](https://github.com/go-workflow/go-workflow)
- [ory/ladon: 访问控制策略的 SDK](https://github.com/ory/ladon)
- [vardius/go-api-boilerplate: 使用最佳实践 DDD CQRS ES gRPC 的 Go Server/API 样板](https://github.com/vardius/go-api-boilerplate)
### January 11, 2022
- [samlitowitz/php-memory: 一个与 PHP 内存限制交互的库](https://github.com/samlitowitz/php-memory)
- [michaeldyrynda/founder: Laravel 入门应用](https://github.com/michaeldyrynda/founder)
- [malukenho/mcbumpface: 🍂 一个同步 `composer.lock` 和 `composer.json` 版本的简单工具,可以更快地解决包依赖关系](https://github.com/malukenho/mcbumpface)
- [rocketlaunchr/dataframe-go: Go 的 DataFrames:用于统计、机器学习和数据操作/探索](https://github.com/rocketlaunchr/dataframe-go)
- [alpacahq/marketstore: 金融时间序列数据的 DataFrame 服务器](https://github.com/alpacahq/marketstore)
- [aliyilmaz/policyMaker: 该软件包用于为服务器软件创建自定义访问策略。 支持 Apache、Microsoft ISS、LiteSpeed 和 Nginx 软件。](https://github.com/aliyilmaz/policyMaker)
### January 10, 2022
- [viewi/viewi: 使用 PHP 构建全栈和完全反应式用户界面的强大工具](https://github.com/viewi/viewi)
- [matcornic/hermes: Golang 包,可生成干净、响应迅速的 HTML 电子邮件以发送交易邮件](https://github.com/matcornic/hermes)
- [RussellLuo/slidingwindow: 用于分布式速率限制的滑动窗口算法的 Golang 实现。](https://github.com/RussellLuo/slidingwindow)
- [mennanov/limiters: 分布式应用程序的 Golang 速率限制器](https://github.com/mennanov/limiters)
- [robinvdvleuten/php-ulid: alizain/ulid 的 PHP 端口,有一些小的改进。](https://github.com/robinvdvleuten/php-ulid)
- [bytebase/bytebase: 面向团队的基于 Web、零配置、无依赖关系的数据库架构更改和版本控制工具。](https://github.com/bytebase/bytebase)
- [fclairamb/ftpserver: 基于 Golang 的自治 FTP 服务器,带有 SFTP、S3、Dropbox 和 Google Drive 连接器。](https://github.com/fclairamb/ftpserver)
### January 8, 2022
- [xroche/httrack: 将网站复制到您的计算机](https://github.com/xroche/httrack)
- [znck/grammarly: 非官方语法 VS 代码扩展](https://github.com/znck/grammarly)
### January 7, 2022
- [pionl/laravel-chunk-upload: 支持多个提供程序的块上传的基本实现,例如 jQuery-file-upload、pupload、DropZone 和 resumable.js](https://github.com/pionl/laravel-chunk-upload)
- [returntocorp/semgrep: 多种语言的轻量级静态分析。](https://github.com/returntocorp/semgrep)
- [go-logr/logr: 一个简单的Go日志接口](https://github.com/go-logr/logr)
- [alecthomas/participle: Go 的解析器库](https://github.com/alecthomas/participle)
- [rezaamini-ir/migrator: Migrator 是 Laravel 的 GUI 迁移管理器。](https://github.com/rezaamini-ir/migrator)
- [staudenmeir/laravel-cte: Laravel 查询常用表表达式](https://github.com/staudenmeir/laravel-cte)
- [staudenmeir/laravel-adjacency-list: 递归 Laravel Eloquent 与 CTE 的关系](https://github.com/staudenmeir/laravel-adjacency-list)
### January 6, 2022
- [octobox/octobox: 📮解开你的 GitHub 通知](https://github.com/octobox/octobox)
- [kevwan/stream: 流程应用程序接口。](https://github.com/kevwan/stream)
- [tfrommen/octobox-web-extension: 使您的GitHub通知图标链接到Octobox而不是GitHub。](https://github.com/tfrommen/octobox-web-extension)
### January 5, 2022
- [ulule/limiter: Go 的死简单速率限制中间件。](https://github.com/ulule/limiter)
- [iyear/pure-live-core: 让直播回归纯粹](https://github.com/iyear/pure-live-core)
- [shmilylty/netspy: netspy是一款快速探测内网可达网段工具](https://github.com/shmilylty/netspy)
- [michaeldyrynda/laravel-cascade-soft-deletes: 实现软删除的 Eloquent 模型的级联删除](https://github.com/michaeldyrynda/laravel-cascade-soft-deletes)
### January 4, 2022
- [KenmyZhang/aliyun-communicate: 短信验证码服务](https://github.com/KenmyZhang/aliyun-communicate)
- [phith0n/zkar: ZKar 是 Go 中的 Java 序列化协议分析工具。](https://github.com/phith0n/zkar)
- [kyoh86/richgo: 用文本装饰丰富 `go test` 输出。](https://github.com/kyoh86/richgo)
- [mojocn/base64Captcha: base64 图像字符串的验证码](https://github.com/mojocn/base64Captcha)
- [sj-i/php-cast: 具有隐式弱模式转换行为的显式转换](https://github.com/sj-i/php-cast)
- [peter279k/simple-container: 这是一个简单的容器,帮助开发人员轻松地注入特定的类!](https://github.com/peter279k/simple-container)
- [sj-i/typist: 强制执行局部变量类型的 PHP 库。](https://github.com/sj-i/typist)
- [jessarcher/laravel-castable-data-transfer-object: 在 Laravel 中使用 Spatie 的数据传输对象类自动将 JSON 列转换为丰富的 PHP 对象](https://github.com/jessarcher/laravel-castable-data-transfer-object)
### December 31, 2021
- [kingflamez/laravelrave: 使用 Laravel 轻松实现 Flutterwave Rave 支付网关](https://github.com/kingflamez/laravelrave)
- [akaunting/laravel-money: Laravel 的货币格式和转换包](https://github.com/akaunting/laravel-money)
- [akaunting/laravel-setting: Laravel 的持久化设置包](https://github.com/akaunting/laravel-setting)
- [tomcraven/goga: Golang 遗传算法](https://github.com/tomcraven/goga)
### December 30, 2021
- [uptrace/uptrace: 使用 OpenTelemetry 和 ClickHouse 进行分布式跟踪](https://github.com/uptrace/uptrace)
- [spatie/laravel-route-discovery: 在 Laravel 应用程序中自动发现路由](https://github.com/spatie/laravel-route-discovery)
- [sunface/rust-course: Rust语言圣经](https://github.com/sunface/rust-course)
- [lukeraymonddowning/Tupper: A simple, no-nonsense IoC Container written in PHP for Dependency Injection](https://github.com/lukeraymonddowning/Tupper)
- [lukeraymonddowning/Tupper: 一个用 PHP 编写的用于依赖注入的简单、严肃的 IoC 容器](https://github.com/lukeraymonddowning/Tupper)
- [patchlevel/event-sourcing: 一个轻量级但也包罗万象的事件溯源库](https://github.com/patchlevel/event-sourcing)
- [TheZoraiz/ascii-image-converter: 一个跨平台的命令行工具,用于将图像转换为 ascii 艺术并在控制台上打印它们。](https://github.com/TheZoraiz/ascii-image-converter)
### December 29, 2021
- [floyernick/Data-Structures-and-Algorithms: Go中的数据结构和算法实现](https://github.com/floyernick/Data-Structures-and-Algorithms)
- [ChimeraCoder/gojson: 从示例 JSON 自动生成 Go (golang) 结构定义](https://github.com/ChimeraCoder/gojson)
- [gravitational/teleport: Teleport 是访问所有基础设施的最简单、最安全的方式。 Teleport 是一种身份感知、多协议访问代理](https://github.com/gravitational/teleport)
- [rs/zerolog: 零分配 JSON 记录器](https://github.com/rs/zerolog)
- [spf13/afero: Go 的文件系统抽象系统](https://github.com/spf13/afero)
- [casdoor/casdoor: 一个UI优先的集中认证/单点登录(SSO)平台,支持OAuth 2.0/OIDC和SAML](https://github.com/casdoor/casdoor)
### December 28, 2021
- [tuna/freedns-go: 针对中国用户优化的 DNS 服务器。](https://github.com/tuna/freedns-go)
- [cloudflare/quiche: 🥧 QUIC 传输协议和 HTTP/3 的美味实现](https://github.com/cloudflare/quiche)
- [natefinch/lumberjack: lumberjack 是 Go 的日志滚动包](https://github.com/natefinch/lumberjack)
- [alitto/pond: 🔘 用 Go 编写的简约和高性能的 goroutine 工作池](https://github.com/alitto/pond)
### December 27, 2021
- [loov/goda: Go 依赖分析工具包](https://github.com/loov/goda)
- [prabhatsharma/zinc: 一种轻量级的弹性搜索替代方案,需要最少的资源,用 Go 编写。](https://github.com/prabhatsharma/zinc)
- [tidwall/btree: Go的B树实现](https://github.com/tidwall/btree)
- [spf13/pflag: 替换Go的flag包,实现POSIX/GNU风格——flags。](https://github.com/spf13/pflag)
- [bitleak/lmstfy: 在基于Redis存储的Golang中实现任务队列](https://github.com/bitleak/lmstfy)
- [buger/goterm: Go中的高级终端输出](https://github.com/buger/goterm)
### December 24, 2021
- [GoogleCloudPlatform/terraformer: 一个 CLI 工具,可根据现有基础架构(反向 Terraform)生成 tf/json 和 tfstate 文件。](https://github.com/GoogleCloudPlatform/terraformer)
- [mix-go/xdi: DI, IoC container / DI、IoC 容器](https://github.com/mix-go/xdi)
- [golobby/container: 用于Go项目的轻量级但功能强大的IoC依赖项注入容器](https://github.com/golobby/container)
### December 23, 2021
- [wader/fq: 二进制格式的 jq](https://github.com/wader/fq)
- [lysu/go-saga: 在 Go 中实现 saga-pattern,另一种分发事务的方式。](https://github.com/lysu/go-saga)
- [erdemkeren/laravel-otp: 一个 laravel 包,用一次性密码保护你的路线(otp)](https://github.com/erdemkeren/laravel-otp)
- [codezero-be/laravel-localized-routes: 在 Laravel 应用程序中设置和使用本地化路由的便捷方式。](https://github.com/codezero-be/laravel-localized-routes)
- [percona/percona-xtrabackup: InnoDB和XtraDB数据库的开源热备份工具](https://github.com/percona/percona-xtrabackup)
### December 22, 2021
- [ionic-team/capacitor: 为 iOS、Android 和 Web 构建跨平台的原生渐进式 Web 应用程序](https://github.com/ionic-team/capacitor)
- [itimofeev/go-saga: saga 模式的 Go lang 实现](https://github.com/itimofeev/go-saga)
- [d4l3k/go-pry: Go 的交互式 REPL,允许您随时插入代码。](https://github.com/d4l3k/go-pry)
### December 21, 2021
- [BitOne/php-meminfo: PHP 扩展以了解内存使用情况](https://github.com/BitOne/php-meminfo)
- [karam-mustafa/laravel-geographical-calculator: laravel 包帮助你实现地理计算,有几种算法可以帮助你处理坐标和距离。](https://github.com/karam-mustafa/laravel-geographical-calculator)
- [go-mysql-org/go-mysql-elasticsearch: 将 MySQL 数据同步到 elasticsearch](https://github.com/go-mysql-org/go-mysql-elasticsearch)
- [jinzhu/copier: golang 的复制器,将值从结构复制到结构等等](https://github.com/jinzhu/copier)
### December 20, 2021
- [zyedidia/generic: 用 Go 编写的通用数据结构的实验性集合。](https://github.com/zyedidia/generic)
- [nikgalushko/fx: Fx 是一个有用的函数式编程助手。](https://github.com/nikgalushko/fx)
- [iancoleman/strcase: 用于转换为 snake_case 或 CamelCase 的 golang 包](https://github.com/iancoleman/strcase)
- [johnnymast/morsecode: 莫尔斯电码消息进行编码或解码](https://github.com/johnnymast/morsecode)
### December 17, 2021
- [spatie/laravel-comments: 将评论和反应与 Eloquent 模型相关联](https://github.com/spatie/laravel-comments)
### December 16, 2021
- [ssssssss-team/spider-flow: 新一代爬虫平台,以图形化方式定义爬虫流程,不写代码即可完成爬虫。](https://github.com/ssssssss-team/spider-flow)
- [jolestar/go-commons-pool: golang 的通用对象池](https://github.com/jolestar/go-commons-pool)
- [DataDog/datadog-agent: 数据狗代理](https://github.com/DataDog/datadog-agent)
- [Jhnbrn90/LaravelPackage.com: LaravelPackage.com 的文档:学习按照此开放文档从头开始创建 Laravel 特定的 PHP 包。](https://github.com/Jhnbrn90/LaravelPackage.com)
- [andreaselia/laravel-api-to-postman: 从 Laravel API 自动生成 Postman 集合](https://github.com/andreaselia/laravel-api-to-postman)
- [staudenmeir/laravel-merged-relations: 合并 Laravel Eloquent 关系](https://github.com/staudenmeir/laravel-merged-relations)
- [CristalTeam/php-api-wrapper: 🌈 使用像 Laravel Eloquent 或 Doctrine 这样的 API(不再是梦想)](https://github.com/CristalTeam/php-api-wrapper)
- [dietercoopman/laravel-showsql: 一个 Laravel 包,用于将特定的 sql 输出到您最喜欢的调试工具。](https://github.com/dietercoopman/laravel-showsql)
### December 15, 2021
- [JieAnthony/laravel-octane-workerman](https://github.com/JieAnthony/laravel-octane-workerman)
- [tomarrell/wrapcheck: 一个简单的 Go linter,用于检查来自外部包的错误是否在返回期间被包装,以帮助在调试期间识别错误源。](https://github.com/tomarrell/wrapcheck)
- [mosn/holmes: 自我感知的 Golang 配置文件转储程序](https://github.com/mosn/holmes)
- [mowangjuanzi/mysql-chinese-doc: mysql中文文档](https://github.com/mowangjuanzi/mysql-chinese-doc)
- [kuaifan/dootask: DooTask是一款轻量级的开源在线项目任务管理工具](https://github.com/kuaifan/dootask)
- [povils/phpmnd: PHP 幻数检测器](https://github.com/povils/phpmnd)
- [friends-of-reactphp/mysql: 用于 ReactPHP 的异步 MySQL 数据库客户端。](https://github.com/friends-of-reactphp/mysql)
### December 14, 2021
- [phake/phake: PHP 模拟框架](https://github.com/phake/phake)
- [spatie/cpu-load-health-check: 用于监控 CPU 负载的 Laravel 健康检查](https://github.com/spatie/cpu-load-health-check)
- [batchcorp/plumber: 用于与 Kafka、RabbitMQ 和其他消息系统进行交互。](https://github.com/batchcorp/plumber)
- [qax-os/goreporter: 一个 Golang 工具,可以进行静态分析、单元测试、代码审查和生成代码质量报告。](https://github.com/qax-os/goreporter)
- [v2er-app/iOS: V2er.iOS源码](https://github.com/v2er-app/iOS)
- [nicolashery/mac-dev-setup: 在 macOS 上设置开发环境的初学者指南](https://github.com/nicolashery/mac-dev-setup)
- [vendasta/setup-new-computer-script: 该脚本将帮助 Vendasta 的新开发人员快速设置和安装工具和应用程序。](https://github.com/vendasta/setup-new-computer-script)
### December 13, 2021
- [tilt-dev/tilt: 将开发环境定义为代码。用于Kubernetes上的微服务应用程序。](https://github.com/tilt-dev/tilt)
- [rsocket/rsocket-go: rsocket-go 实现](https://github.com/rsocket/rsocket-go)
- [dgraph-io/sroar: sroar 是 Go 语言中 Roaring Bitmaps 的重写版本,旨在实现内存中表示和磁盘上表示之间的平等。](https://github.com/dgraph-io/sroar)
### December 11, 2021
- [oschina/kooder: Kooder 是一个为 Gitee/GitLab 开发的开源代码搜索工具](https://github.com/oschina/kooder)
### December 10, 2021
- [polyfloyd/go-errorlint: 一个源代码 linter,可用于查找会导致 Go 的错误包装方案出现问题的代码](https://github.com/polyfloyd/go-errorlint)
- [symplely/coroutine: 使用生成器的协作多任务处理。 协程的基础知识,异步和等待!](https://github.com/symplely/coroutine)
- [upfor/forkman: 一个最轻量级的 PHP 进程管理器](https://github.com/upfor/forkman)
### December 9, 2021
- [goburrow/modbus: Go(golang)中modbus协议的容错实现](https://github.com/goburrow/modbus)
- [spf13/cast: 在 Go 中安全且轻松地从一种类型转换为另一种类型](https://github.com/spf13/cast)
- [Laravel-Backpack/LogManager: 使用 Backpack 预览、下载和删除 Laravel 日志文件的界面。](https://github.com/Laravel-Backpack/LogManager)
- [wikimedia/wikipedia-ios: 📱官方维基百科iOS应用。](https://github.com/wikimedia/wikipedia-ios)
### December 8, 2021
- [pwxcoo/chinese-xinhua: 中华新华字典数据库。包括歇后语,成语,词语,汉字。](https://github.com/pwxcoo/chinese-xinhua)
- [Nyholm/SuperSlim: 一个小而超快速的微服务框架](https://github.com/Nyholm/SuperSlim)
### December 7, 2021
- [sebdesign/blade-sql-formatter: 在 Laravel 视图中显示格式化的 SQL 查询](https://github.com/sebdesign/blade-sql-formatter)
- [lanceliao/china-holiday-calender: 中国节假日、调休、补班日历,ICS格式,可供IPhone、Google Calender、Outlook等客户端订阅](https://github.com/lanceliao/china-holiday-calender)
- [ongr-io/ElasticsearchDSL: 引入 Elasticsearch DSL 库,为 Elasticsearch bundle 和 elasticsearch-php 客户端提供客观的查询构建器。 您可以轻松构建任何 Elasticsearch 查询并将其转换为数组。](https://github.com/ongr-io/ElasticsearchDSL)
- [openzipkin/zipkin-php: Zipkin PHP 是 Zipkin 的官方 PHP Tracer 实现](https://github.com/openzipkin/zipkin-php)
### December 6, 2021
- [sindresorhus/Actions: ⚙️ 加速你的捷径](https://github.com/sindresorhus/Actions)
- [DATA-DOG/go-sqlmock: golang的Sql模拟驱动程序来测试数据库交互](https://github.com/DATA-DOG/go-sqlmock)
- [jeessy2/ddns-go: 简单好用的DDNS。自动更新域名解析到公网IP](https://github.com/jeessy2/ddns-go)
- [omniphx/forrest: 一个用于 Salesforce 的 Laravel 库](https://github.com/omniphx/forrest)
### December 3, 2021
- [integrii/flaggy: 使用子命令、位置值和任何位置的标志的惯用 Go 输入解析。](https://github.com/integrii/flaggy)
- [PuerkitoBio/goquery: goquery 为 Go 语言带来了类似于 jQuery 的语法和一组功能。](https://github.com/PuerkitoBio/goquery)
- [bpolaszek/freddie: Freddie 是 Mercure Hub 规范的 PHP 实现。](https://github.com/bpolaszek/freddie)
- [Propaganistas/Laravel-Disposable-Email: Laravel 的一次性电子邮件地址验证器](https://github.com/Propaganistas/Laravel-Disposable-Email)
### December 2, 2021
- [lihaoyun6/PD-Runner: Parallels Desktop 的 VM 启动器](https://github.com/lihaoyun6/PD-Runner)
- [withfig/autocomplete: Fig 为您的终端添加了自动完成功能。](https://github.com/withfig/autocomplete)
### December 1, 2021
- [VKCOM/kphp: KPHP—一个PHP编译器](https://github.com/VKCOM/kphp)
- [composer/pcre: PCRE 包装库,提供类型安全的 preg_* 替换。](https://github.com/composer/pcre)
- [php-parallel-lint/PHP-Console-Highlighter: 在终端中突出显示 PHP 代码](https://github.com/php-parallel-lint/PHP-Console-Highlighter)
- [IceWhaleTech/CasaOS: CasaOS - 一个简单、易用、优雅的开源家庭云系统。](https://github.com/IceWhaleTech/CasaOS)
- [goccy/go-json: 快速的 JSON 编码器/解码器,兼容 Go 的 encoding/json](https://github.com/goccy/go-json)
- [gotomicro/ego: 简单的 Go 微服务框架](https://github.com/gotomicro/ego)
- [Vectorface/whip: 用于为客户端检索准确 IP 地址信息的 PHP 类。](https://github.com/Vectorface/whip)
### November 30, 2021
- [bamarni/composer-bin-plugin: 您的 bin 依赖项没有冲突](https://github.com/bamarni/composer-bin-plugin)
### November 29, 2021
- [CuyZ/Valinor: 有助于将任何输入映射到强类型值对象结构的 PHP 库。](https://github.com/CuyZ/Valinor)
- [wxbool/video-srt-windows: 这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。](https://github.com/wxbool/video-srt-windows)
- [egoist/bget: 从 GitHub Releases 以交互方式下载和安装二进制文件。](https://github.com/egoist/bget)
- [HyNetwork/hysteria: Hysteria 是一种功能丰富的网络实用程序,针对质量较差的网络进行了优化(例如卫星连接、拥挤的公共 Wi-Fi、从中国连接到国外的服务器)](https://github.com/HyNetwork/hysteria)
- [oasis-engine/engine: Oasis Engine 是一个网络优先和移动优先的高性能实时开发平台。](https://github.com/oasis-engine/engine)
- [uber-go/tally: 具有快速缓冲指标和第三方报告器的 Go 指标界面 资源许可证](https://github.com/uber-go/tally)
- [Percona-Lab/mysql_random_data_load: MySQL随机数据加载器](https://github.com/Percona-Lab/mysql_random_data_load)
### November 26, 2021
- [ktr0731/go-fuzzyfinder: 类似 fzf 的模糊查找器作为 Go 库](https://github.com/ktr0731/go-fuzzyfinder)
- [ahmetb/govvv: “go build”包装器将版本信息添加到 Golang 应用程序](https://github.com/ahmetb/govvv)
- [99designs/gqlgen: go生成基于graphql的服务器库](https://github.com/99designs/gqlgen)
- [a-h/generate:从 JSON 模式生成 Go (golang) 结构。](https://github.com/a-h/generate)
- [jrean/laravel-user-verification: 为 Laravel 5.* 构建的 PHP 包可轻松处理用户电子邮件验证和验证电子邮件](https://github.com/jrean/laravel-user-verification)
### November 25, 2021
- [goplus/gox: Go 语言的代码生成器](https://github.com/goplus/gox)
- [davidwernhart/AlDente: 限制最大充电百分比的 macOS 工具](https://github.com/davidwernhart/AlDente)
- [pkg/profile: Go 的简单分析](https://github.com/pkg/profile)
### November 24, 2021
- [clue/framework-x: Framework X – 简单快速的微型框架,用于构建可在任何地方运行的响应式 Web 应用程序。](https://github.com/clue/framework-x)
- [thockin/go-build-template: Go 应用模板构建环境](https://github.com/thockin/go-build-template)
- [78/xxfpm: 跨平台FastCGI进程管理器,可用作php的进程管理。](https://github.com/78/xxfpm)
### November 23, 2021
- [youfou/wxpy: 微信机器人 / 可能是最优雅的微信个人号 API ✨✨](https://github.com/youfou/wxpy)
- [volatiletech/sqlboiler: 生成一个适合您的数据库模式的Go ORM。](https://github.com/volatiletech/sqlboiler)
- [go-enry/go-enry: 更快的文件编程语言检测器](https://github.com/go-enry/go-enry)
- [myclabs/DeepCopy: 创建对象的深层副本(克隆)](https://github.com/myclabs/DeepCopy)
### November 22, 2021
- [rawilk/laravel-form-components: 为 Tailwind 和 Livewire 构建的表单组件。](https://github.com/rawilk/laravel-form-components)
- [foxsen/archbase: 教科书《计算机体系结构基础》](https://github.com/foxsen/archbase)
- [knqyf263/pet: 用 Go 编写的简单命令行片段管理器。](https://github.com/knqyf263/pet)
- [oxequa/realize: Realize 是排名第一的 Golang Task Runner,它通过自动化最常见的任务和使用性能最佳的 Golang 实时重新加载来增强您的工作流程。](https://github.com/oxequa/realize)
- [web3-php/web3: Web3 PHP 是一个强大的 PHP API 客户端,允许您与通用的以太坊 RPC 进行交互。](https://github.com/web3-php/web3)
- [Elao/PhpEnums: 🔩 为 PHP 和框架集成提供枚举](https://github.com/Elao/PhpEnums)
### November 19, 2021
- [chinleung/laravel-multilingual-routes: 在 Laravel 应用程序中处理多语言路由的包。](https://github.com/chinleung/laravel-multilingual-routes)
- [mutagen-io/mutagen: 用于远程开发的快速文件同步和网络转发](https://github.com/mutagen-io/mutagen)
- [roberto-butti/50-drops-of-php: 开源免费电子书,收集了一些有用的、未知的、被低估的 PHP 函数或在 PHP 日常使用中发现、使用、学习的东西。](https://github.com/roberto-butti/50-drops-of-php)
- [prest/prest: 在任何现有或新的 Postgres 应用程序上简化和加速开发、即时、实时、高性能](https://github.com/prest/prest)
- [traefik/whoami: 将操作系统信息和HTTP请求打印到输出的微型Go Web服务器](https://github.com/traefik/whoami)
- [Nyholm/dsn: 将 DSN 字符串解析为值对象,使它们更易于使用、传递和操作。](https://github.com/Nyholm/dsn)
- [mad-web/laravel-enum: Laravel 的优雅枚举实现](https://github.com/mad-web/laravel-enum)
- [fastwego/feishu: [飞书] 一个用Golang编写的快速飞书开发sdk](https://github.com/fastwego/feishu)
### November 18, 2021
- [brick/phonenumber: PHP 电话号码库](https://github.com/brick/phonenumber)
- [sql2builder/sql2builder.github.io: 将传统SQL转换为Laravel查询生成器。](https://github.com/sql2builder/sql2builder.github.io)
### November 17, 2021
- [AppFlowy-IO/appflowy: AppFlowy 是 Notion 的开源替代品。 您负责您的数据和自定义。 使用 Flutter 和 Rust 构建。](https://github.com/AppFlowy-IO/appflowy)
- [archtechx/money: 一个用于处理金钱的简单包。](https://github.com/archtechx/money)
### November 16, 2021
- [spatie/laravel-health: 检查 Laravel 应用程序的健康状况](https://github.com/spatie/laravel-health)
- [envoyproxy/protoc-gen-validate: 用于生成多语言消息验证器的 protoc 插件](https://github.com/envoyproxy/protoc-gen-validate)
- [qoomon/docker-host: 将所有流量转发到本地 docker 主机或任何其他主机的 docker sidecar 容器](https://github.com/qoomon/docker-host)
- [cretueusebiu/valet-windows: 适用于 Windows 的 Laravel Valet。](https://github.com/cretueusebiu/valet-windows)
- [orchestral/testbench-dusk: Laravel Dusk 包开发测试助手](https://github.com/orchestral/testbench-dusk)
### November 15, 2021
- [touhidurabir/laravel-model-sanitize: 一个 Laravel 包,用于处理模型数据的清理过程以创建/更新模型记录。](https://github.com/touhidurabir/laravel-model-sanitize)
- [roblesterjr04/EloquentSalesForce: 使用 Laravel Eloquent 模型结构的 SalesForce 包。](https://github.com/roblesterjr04/EloquentSalesForce)
- [lwch/natpass: 新一代NAT内网穿透+shell+vnc工具](https://github.com/lwch/natpass)
- [slackhq/nebula: 一个可扩展的覆盖网络工具,专注于性能、简单性和安全性](https://github.com/slackhq/nebula)
- [manifoldco/promptui: 命令行应用程序的交互式提示](https://github.com/manifoldco/promptui)
### November 12, 2021
- [leproxy/leproxy: LeProxy 是适合所有人的 HTTP/SOCKS 代理服务器!](https://github.com/leproxy/leproxy)
- [go-bindata/go-bindata: 将数据文件转成go代码。](https://github.com/go-bindata/go-bindata)
- [rabbitmask/Libra: 网站篡改、暗链、死链监测平台](https://github.com/rabbitmask/Libra)
- [orijtech/structslop: structslop 是 Go 的静态分析器,它推荐结构字段重新排列以提供最大的空间/分配效率。](https://github.com/orijtech/structslop)
- [golang-jwt/jwt: JSON Web 令牌的 go 实现。](https://github.com/golang-jwt/jwt)
- [phppkg/easytpl: ⚡️ 简单快速的PHP文本模板引擎](https://github.com/phppkg/easytpl)
### November 11, 2021
- [michael-rubel/laravel-formatters: 可用于在 Laravel 应用程序中标准化数据格式的类集合。](https://github.com/michael-rubel/laravel-formatters)
- [rakyll/statik: 将文件嵌入到 Go 可执行文件中](https://github.com/rakyll/statik)
- [orlangure/gnomock: 无需使用临时 Docker 容器编写模拟即可测试您的代码 📦 只需几行代码即可设置流行的服务 ⏱️ 没有 bash,没有 yaml,只有代码 💻](https://github.com/orlangure/gnomock)
- [ycd/dstp: 🧪 对您的网站运行常见的网络测试。](https://github.com/ycd/dstp)
- [romanzipp/Laravel-SEO: SEO包实现了最大程度的定制和灵活性](https://github.com/romanzipp/Laravel-SEO)
- [mohae/deepcopy: 深度复制事物](https://github.com/mohae/deepcopy)
- [touhidurabir/command-validator: 一个简单的 laravel 包,用于验证控制台命令参数和选项。](https://github.com/touhidurabir/command-validator)
- [flugg/laravel-responder: 用于构建 API 响应的 Laravel Fractal 包,为您提供 Fractal 的强大功能和 Laravel 的优雅。](https://github.com/flugg/laravel-responder)
- [favadi/protoc-go-inject-tag: 将自定义标签注入 protobuf golang 结构体](https://github.com/favadi/protoc-go-inject-tag)
### November 10, 2021
- [ineo6/hosts: GitHub最新hosts。解决GitHub图片无法显示,加速GitHub网页浏览。](https://github.com/ineo6/hosts)
- [wailsapp/wails: 使用 Go 和 Web 技术创建桌面应用程序。](https://github.com/wailsapp/wails)
- [bmatcuk/doublestar: 在 golang 的 path.Match 和 filepath.Glob 中实现对双星 (**) 匹配的支持。](https://github.com/bmatcuk/doublestar)
- [botpress/botpress: 🤖 可靠地理解文本和自动化对话的开发工具。 内置 NLU。 在任何消息传递渠道(Slack、MS Teams、网站、Telegram 等)上连接和部署。](https://github.com/botpress/botpress)
- [reindert-vetter/api-version-control: 以优雅的方式管理端点版本的 Laravel 包](https://github.com/reindert-vetter/api-version-control)
- [Laravel-Lang/laravel-lang-publisher: 来自 Laravel-Lang/lang 的 Laravel 框架、Jetstream、Fortify、Cashier、Spark 和 Nova 的发布者 lang 文件](https://github.com/Laravel-Lang/laravel-lang-publisher)
- [TheDragonCode/support: 支持包是用于项目的助手和工具的集合。](https://github.com/TheDragonCode/support)
- [TheDragonCode/pretty-array: 简单地将数组转换为漂亮的视图](https://github.com/TheDragonCode/pretty-array)
- [coderit666/GoGuide: 「Go语言学习指南」一份涵盖大部分 Golang 程序员所需要掌握的核心知识](https://github.com/coderit666/GoGuide)
### November 9, 2021
- [SPX372928/MyIPTV: 标准协议移动直播源](https://github.com/SPX372928/MyIPTV)
- [LianjiaTech/lightning: Lightning 是一个 binlog 解析工具。 它可以生成原始 SQL 或闪回 SQL。](https://github.com/LianjiaTech/lightning)
- [jstaf/onedriver: 适用于 Microsoft OneDrive 的本机 Linux 文件系统](https://github.com/jstaf/onedriver)
- [cristalhq/aconfig: 简单、有用且固执己见的配置加载器。](https://github.com/cristalhq/aconfig)
### November 8, 2021
- [mmarkdown/mmark: Mmark:面向 IETF 的 Go 中强大的 markdown 处理器](https://github.com/mmarkdown/mmark)
- [davidschlachter/embedded-struct-visualizer: 在 Go 项目中可视化嵌入结构图的工具](https://github.com/davidschlachter/embedded-struct-visualizer)
- [laracademy/generators: 取您的数据库表并基于该表结构生成模型。](https://github.com/laracademy/generators)
- [forkcms/forkcms: Fork 是一个使用 Symfony 组件的易于使用的开源 CMS。](https://github.com/forkcms/forkcms)
- [gosuri/uilive: uilive 是一个实时更新终端输出的 go 库](https://github.com/gosuri/uilive)
- [cyfdecyf/cow: 用 Go 编写的 HTTP 代理。 COW 可以自动识别被阻止的站点并使用父代理访问。](https://github.com/cyfdecyf/cow)
- [PHPFluent/Callback: 允许您以更动态的方式执行回调。](https://github.com/PHPFluent/Callback)
- [Respect/Config: 一个功能强大、体积小、极其简单的配置程序和依赖注入容器](https://github.com/Respect/Config)
- [PHPFluent/ArrayStorage: 将数组用作数据库的非持久性方法](https://github.com/PHPFluent/ArrayStorage)
### November 5, 2021
- [johannesjo/super-productivity: 与 Jira、Github 和 Gitlab 集成的程序员和其他数字工作者的待办事项列表和时间跟踪器](https://github.com/johannesjo/super-productivity)
- [electron-userland/electron-forge: 用于创建、发布和安装现代 Electron 应用程序的完整工具](https://github.com/electron-userland/electron-forge)
- [maxogden/menubar: 使用 Electron 创建菜单栏桌面应用程序的高级方法。](https://github.com/maxogden/menubar)
- [turbot/steampipe: 使用 SQL 即时查询您的云服务(AWS、 Azure、 GCP 等)。](https://github.com/turbot/steampipe)
- [asticode/go-astisub: 在 GO 中操纵字幕(. srt,. ssa/. ass,. stl,. ttml,. vtt (webvtt) ,teletext 等)](https://github.com/asticode/go-astisub)
- [keycastr/keycastr: KeyCastr,一个开源的击键可视化工具。](https://github.com/keycastr/keycastr)
- [bufbuild/buf: 使用协议缓冲区的新方法。](https://github.com/bufbuild/buf)
- [TheNorthMemory/easyalipay: 支付宝 OpenAPI 的Guzzle HttpClient封装组合, 内置 请求签名 和 应答验签 两个middlewares中间件,创新性地实现了链式面向对象同步/异步调用远程接口。](https://github.com/TheNorthMemory/easyalipay)
- [TheNorthMemory/wechatpay-php: 微信支付 APIv2&APIv3 的Guzzle HttpClient封装组合, APIv2已内置请求数据签名及XML转换器,应答做了数据签名验签](https://github.com/TheNorthMemory/wechatpay-php)
### November 4, 2021
- [chai2010/ugo-compiler-book: 从头开发一个迷你Go语言编译器(开发中)](https://github.com/chai2010/ugo-compiler-book)
- [stevegrunwell/asimov: 从 Apple Time Machine 备份中自动排除开发依赖项](https://github.com/stevegrunwell/asimov)
- [xcodebuild/iProxy: 💎 跨平台Web调试代理(LightProxy的fork)](https://github.com/xcodebuild/iProxy)
- [emicklei/go-restful: 使用 Go 构建 REST 风格的 Web 服务的包](https://github.com/emicklei/go-restful)
- [wilsonmar/mac-setup: 🚀 自动安装、配置和运行几个堆栈中最流行的程序,以便在 Mac 和云端离线工作。](https://github.com/wilsonmar/mac-setup)
- [mlanin/laravel-api-debugger: 轻松调试您的 JSON API。](https://github.com/mlanin/laravel-api-debugger)
### November 3, 2021
- [Rust-Coding-Guidelines/rust-coding-guidelines-zh: Rust 编码规范 中文版 (非官方)](https://github.com/Rust-Coding-Guidelines/rust-coding-guidelines-zh)
- [cch123/elasticsql: 在 golang(go) 中将 sql 转换为 elasticsearch DSL](https://github.com/cch123/elasticsql)
- [cockroachdb/errors: Go错误库,可通过网络进行错误移植](https://github.com/cockroachdb/errors)
- [MoyuScript/bilibili-api: 哔哩哔哩的API调用模块](https://github.com/MoyuScript/bilibili-api)
- [capnproto/go-capnproto2: 用于 Go 的 Cap'n Proto 库和代码生成器](https://github.com/capnproto/go-capnproto2)
- [MangoDB-io/MangoDB: 一个真正的开源 MongoDB 替代品](https://github.com/MangoDB-io/MangoDB)
- [hexops/valast: 将Go值转换为其AST](https://github.com/hexops/valast)
- [wimpysworld/quickemu: 快速创建和运行优化的 Windows、macOS 和 Linux 桌面虚拟机。](https://github.com/wimpysworld/quickemu)
- [googleapis/google-auth-library-php: 用于 PHP 的 Google 身份验证库](https://github.com/googleapis/google-auth-library-php)
- [lcobucci/error-handling-middleware: 与 RFC 7807 兼容的 PSR-15 中间件](https://github.com/lcobucci/error-handling-middleware)
### November 2, 2021
- [donjan-deng/hyperf-casbin: 适配 Hyperf 的开源访问控制框架Casbin](https://github.com/donjan-deng/hyperf-casbin)
- [kevinburke/nacl: NaCL API 集的纯 Go 实现](https://github.com/kevinburke/nacl)
- [googleforgames/open-match: 灵活、可扩展和可扩展的视频游戏配对。](https://github.com/googleforgames/open-match)
### November 1, 2021
- [yiisoft/yii-runner-roadrunner: 该软件包包含使用 RoadRunner 运行 Yii3 应用程序的引导程序。](https://github.com/yiisoft/yii-runner-roadrunner)
- [arl/gitmux: 💻 Git 在你的 tmux 状态栏中](https://github.com/arl/gitmux)
- [nakagami/firebirdsql: 用于 Go (golang) 的 Firebird RDBMS sql 驱动程序](https://github.com/nakagami/firebirdsql)
- [qustavo/sqlhooks: 将钩子附加到任何数据库/sql驱动程序](https://github.com/qustavo/sqlhooks)
- [gosimple/slug: 支持多种语言的 URL 友好 slugify。](https://github.com/gosimple/slug)
- [jeremykendall/php-domain-parser: PHP实现的基于公共后缀列表的域解析](https://github.com/jeremykendall/php-domain-parser)
- [jeremykendall/query-auth: REST API 查询身份验证的签名生成和验证](https://github.com/jeremykendall/query-auth)
### October 29, 2021
- [vishvananda/netlink: 简单的 netlink 库。](https://github.com/vishvananda/netlink)
- [go-zookeeper/zk: 用于 Go 的本地 ZooKeeper 客户端](https://github.com/go-zookeeper/zk)
- [google/starlark-go: Starlark 配置语言,在 Go 中实现](https://github.com/google/starlark-go)
### October 28, 2021
- [michaeldyrynda/laravel-efficient-uuid: Laravel 高效的 UUID](https://github.com/michaeldyrynda/laravel-efficient-uuid)
- [ZJDoc/GitGuide: 版本管理操作规范、工具以及托管平台使用](https://github.com/ZJDoc/GitGuide#%E8%AE%B8%E5%8F%AF%E8%AF%81)
### October 27, 2021
- [atongen/gosaic: 创建您自己的图像马赛克。](https://github.com/atongen/gosaic)
- [tylertreat/comcast: 模拟糟糕的网络连接,以便您可以构建更好的系统。](https://github.com/tylertreat/comcast)
- [hyperjumptech/grule-rule-engine: Grule 是 Go (Golang) 编程语言的规则引擎库。](https://github.com/hyperjumptech/grule-rule-engine)
- [xxjwxc/caoguo: golang,微信小程序,电商系统](https://github.com/xxjwxc/caoguo)
- [getcandy/candy-api: GetCandy电子商务API](https://github.com/getcandy/candy-api)
### October 26, 2021
- [rfyiamcool/go-netflow: go netflow,捕获进程进/出流量,类似于c Nethogs。](https://github.com/rfyiamcool/go-netflow)
- [KubeOperator/KubePi: KubePi 是一款简单易用的开源 Kubernetes 可视化管理面板](https://github.com/KubeOperator/KubePi)
- [onsi/ginkgo: Go 的 BDD 测试框架](https://github.com/onsi/ginkgo)
- [go-playground/pool: 🚤 一个有限的消费者 goroutine 或无限的 goroutine 池,以便更容易地处理和取消 goroutine](https://github.com/go-playground/pool)
- [knative/eventing: Knative 事件绑定和交付的开源规范和实现](https://github.com/knative/eventing)
- [onsi/gomega: Gomega 是一个匹配器/断言库。](https://github.com/onsi/gomega)
- [ankurk91/laravel-eloquent-relationships: 这个包为 Laravel 中的 Eloquent 添加了一些缺失的关系](https://github.com/ankurk91/laravel-eloquent-relationships)
- [chelout/laravel-relationship-events: 缺少 Laravel 的关系事件](https://github.com/chelout/laravel-relationship-events)
- [staudenmeir/belongs-to-through: Laravel Eloquent BelongsToThrough 关系](https://github.com/staudenmeir/belongs-to-through)
- [kitloong/eloquent-power-joins-with-compoships: 这个包是一个 Eloquent Power Joins 扩展,用于支持 Compoships。](https://github.com/kitloong/eloquent-power-joins-with-compoships)
- [staudenmeir/eloquent-json-relations: Laravel Eloquent 与 JSON 键的关系](https://github.com/staudenmeir/eloquent-json-relations)
### October 25, 2021
- [squatto/alfred-imessage-2fa: iMessage 2FA Workflow for Alfred](https://github.com/squatto/alfred-imessage-2fa)
- [fnproject/fn: 本地容器、与云无关的无服务器平台。](https://github.com/fnproject/fn)
- [pbatard/rufus: 可靠的 USB 格式化实用程序](https://github.com/pbatard/rufus)
### October 24, 2021
- [jackluo2012/datacenter: 数据中台系统,基于go-zero框架](https://github.com/jackluo2012/datacenter)
- [soywod/himalaya: 📫 CLI 电子邮件客户端](https://github.com/soywod/himalaya)
### October 22, 2021
- [rinvex/laravel-attributes: Rinvex Attributes是一个健壮、智能和集成的实体属性值模型(EAV)实现。](https://github.com/rinvex/laravel-attributes)
- [MyIntervals/emogrifier: 将 CSS 样式转换为 HTML 代码中的内联样式属性。](https://github.com/MyIntervals/emogrifier)
- [jpkleemans/attribute-events: 🔥 触发 Eloquent 模型属性更改的事件](https://github.com/jpkleemans/attribute-events)
- [cybercog/laravel-eloquent-flag: Laravel Eloquent 布尔值和时间戳标记属性行为。](https://github.com/cybercog/laravel-eloquent-flag)
### October 21, 2021
- [rabbit-tcp/README_ZH.MD :这个项目用来承载并转发 TCP 流量,并在转发时对流量进行分拆与重组。](https://github.com/ihciah/rabbit-tcp/blob/master/README_ZH.MD)
- [go-pay/gopay: 微信、支付宝、PayPal 的Go版本SDK。](https://github.com/go-pay/gopay)
### October 20, 2021
- [khs1994-docker/lnmp: 使用 Docker Compose 快速搭建 LNMP 环境](https://github.com/khs1994-docker/lnmp)
- [spatie/laravel-site-search: 通过抓取您的网站创建全文搜索索引](https://github.com/spatie/laravel-site-search)
### October 18, 2021
- [whyour/qinglong: 定时任务管理面板](https://github.com/whyour/qinglong)
- [kitabisa/teler: 实时 HTTP 入侵检测](https://github.com/kitabisa/teler)
- [go-openapi/spec: openapi 规范对象模型](https://github.com/go-openapi/spec)
- [pinkhello/go-starter: Go 服务框架脚手架. 整合 echo、swag、viper、nsq、logrus、fx、xorm、cobra 等第三方库](https://github.com/pinkhello/go-starter)
- [Kagami/go-face: 🔍使用Go进行人脸识别](https://github.com/Kagami/go-face)
- [ikatyang/emoji-cheat-sheet: markdown 表情符号备忘单](https://github.com/ikatyang/emoji-cheat-sheet)
### October 16, 2021
- [phar-io/version: 用于处理版本信息和约束的库](https://github.com/phar-io/version)
- [revoltphp/event-loop: REVERSE是并发PHP应用程序的可靠事件循环。](https://github.com/revoltphp/event-loop)
- [HTMLMin/Laravel-HTMLMin: 适用于 Laravel 5、6 和 7 的简单 HTML 缩小器。](https://github.com/HTMLMin/Laravel-HTMLMin)
- [alexanderpas/php-http-enum](https://github.com/alexanderpas/php-http-enum)
- [speps/go-hashids: Go (golang) implementation of http://www.hashids.org](https://github.com/speps/go-hashids)
### October 14, 2021
- [FASTSHIFT/X-TRACK: 开源GPS自行车码表。](https://github.com/FASTSHIFT/X-TRACK)
- [ddosify/ddosify: 用 Golang 编写的高性能负载测试工具。](https://github.com/ddosify/ddosify)
- [xuedingmiaojun/wxappUnpacker: 小程序反编译(支持分包)](https://github.com/xuedingmiaojun/wxappUnpacker)
- [yangyiRunning/Beijing-House: 面向北京码农同胞的从0开始的买房踩盘实录](https://github.com/yangyiRunning/Beijing-House)
- [lpilp/phpsm2sm3sm4: php版本的国密sm2的签名算法,sm3的hash, sm4的ecb加解密](https://github.com/lpilp/phpsm2sm3sm4)
- [phpecc/phpecc: 纯 PHP 椭圆曲线密码库](https://github.com/phpecc/phpecc)
### October 13, 2021
- [xyTom/Url-Shorten-Worker: 使用 Cloudflare worker 创建的 URL Shortener](https://github.com/xyTom/Url-Shorten-Worker)
- [fosscord/fosscord: Fosscord 是一个免费的开源自托管 Discord 兼容聊天、语音和视频平台](https://github.com/fosscord/fosscord)
- [hteen/apple-store-helper: Apple Store iPhone预约助手](https://github.com/hteen/apple-store-helper)
- [openscrm/api-server: OpenSCRM是一套基于Go和React的超高质量企业微信私域流量管理系统 。](https://github.com/openscrm/api-server)
- [TencentLexiang/lxapi-sdk: 腾讯乐享开放接口sdk](https://github.com/TencentLexiang/lxapi-sdk)
- [verschuur/laravel-robotstxt: Laravel 的动态 robots.txt ServiceProvider 🤖](https://github.com/verschuur/laravel-robotstxt)
### October 12, 2021
- [New Link: feiyangqingyun/QWidgetDemo: Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用。](https://github.com/feiyangqingyun/QWidgetDemo)
- [anncwb/vue-vben-admin: Vue Vben Admin 是一个免费开源的中后台模版。](https://github.com/anncwb/vue-vben-admin)
- [vikdiesel/admin-one-laravel-dashboard: Admin One — 免费的 Laravel 仪表板](https://github.com/vikdiesel/admin-one-laravel-dashboard)
- [cue-lang/cue: CUE 是一种开源数据约束语言,旨在简化涉及定义和使用数据的任务。 它是 JSON 的超集,可以让熟悉 JSON 的用户快速上手。](https://github.com/cue-lang/cue)
### October 11, 2021
- [smol-rs/event-listener: 通知异步任务或线程](https://github.com/smol-rs/event-listener)
- [nats-io/nats.go: 用于NATS的Golang客户端,云本地消息传递系统。](https://github.com/nats-io/nats.go)
- [miguelmota/ethereum-development-with-go-book: 📖 使用Go(golang)开发以太坊的小指南](https://github.com/miguelmota/ethereum-development-with-go-book)
- [yanfeizhang/coder-kung-fu: 开发内功修炼](https://github.com/yanfeizhang/coder-kung-fu)
- [Narasimha1997/ratelimiter: 基于 Sliding-Window 速率限制器算法的 Golang 并发速率限制器库。](https://github.com/Narasimha1997/ratelimiter)
- [mvdan/sh: 支持 bash 的 shell 解析器、格式化器和解释器; 包括 shfmt](https://github.com/mvdan/sh)
- [inbucket/inbucket: 内置 SMTP、POP3、RESTful 服务器的一次性 webmail 服务器(类似于 Mailinator); 不需要数据库。](https://github.com/inbucket/inbucket)
- [inconshreveable/go-update: 构建自更新 Golang 程序](https://github.com/inconshreveable/go-update)
- [matomo-org/device-detector: 通用设备检测库将解析任何用户代理并检测浏览器、操作系统、使用的设备(台式机、平板电脑、手机、电视、汽车、控制台等)、品牌和型号。](https://github.com/matomo-org/device-detector)
### September 8, 2021
- [lima-vm/lima: macOS 上的 Linux 虚拟机](https://github.com/lima-vm/lima)
- [go-gorm/gen: 基于 GORM 的代码生成器](https://github.com/go-gorm/gen)
- [uptrace/bun: 简单且高性能的 SQL 数据库客户端](https://github.com/uptrace/bun)
- [melbahja/goph: 🤘 本地 golang ssh 客户端,用于通过 ssh 连接执行您的命令。 🚀🚀](https://github.com/melbahja/goph)
- [chef/bento: 用于为多个平台构建最小 Vagrant basebox 的 Packer 模板](https://github.com/chef/bento)
### September 7, 2021
- [Intervention/mimesniffer:用于检测给定内容的 mime 类型的库](https://github.com/Intervention/mimesniffer)
- [roseduan/algo-learn: 学习数据结构与算法的代码示例,目前提供 Java、Python、Go 三种语言支持](https://github.com/roseduan/algo-learn)
- [schollz/find3: 高精度室内定位框架,版本3。](https://github.com/schollz/find3)
- [lepikhinb/laravel-fluent:该包提供了一种富有表现力的“流畅”方式来定义模型属性。 它会在运行时自动构建强制转换,并将本机自动完成功能添加到模型的属性中。](https://github.com/lepikhinb/laravel-fluent)
### September 6, 2021
- [ryangjchandler/computed-properties: 一个小包,用于向任何 PHP 类添加计算属性。 🐘](https://github.com/ryangjchandler/computed-properties)
- [shengxinjing/self-employed-workbook: 写给自己的程序员自由职业工作手册](https://github.com/shengxinjing/self-employed-workbook)
- [mathaou/termdbms: 用于查看和(最终)编辑数据库文件的 TUI。 目前仅支持 SQLite。 MySQL 支持将很快添加。](https://github.com/mathaou/termdbms)
- [lampager/lampager-laravel: Laravel 的快速分页](https://github.com/lampager/lampager-laravel)
### September 3, 2021
- [EnixCoda/Gitako: 🐙 Chrome & Firefox & Edge 上的 GitHub 文件树扩展](https://github.com/EnixCoda/Gitako)
- [hound-search/hound: 闪电般快速的代码搜索变得很容易](https://github.com/hound-search/hound)