-
-
Notifications
You must be signed in to change notification settings - Fork 268
/
Copy pathREADME.rss
1144 lines (1144 loc) · 77.5 KB
/
README.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
<channel>
<title>❤️ 每天收集喜欢的开源项目</title>
<description>❤️ 每天收集喜欢的开源项目</description>
<pubDate>Mon, 10 Feb 2025 16:00:00 +0000</pubDate>
<generator>Laminas_Feed_Writer 2 (https://getlaminas.org)</generator>
<link>https://github.com/guanguans/favorite-link</link>
<author>ityaozm@gmail.com (guanguans)</author>
<dc:creator>guanguans</dc:creator>
<atom:link rel="self" type="application/rss+xml" href="https://raw.githubusercontent.com/guanguans/favorite-link/master/README.rss"/>
<item>
<title>cars10/elasticvue: Elasticsearch GUI - 适用于桌面和您的浏览器</title>
<pubDate>Mon, 10 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/cars10/elasticvue</link>
<guid>https://github.com/cars10/elasticvue</guid>
<content:encoded><![CDATA[<a href="https://github.com/cars10/elasticvue" target="_blank">cars10/elasticvue: Elasticsearch GUI - 适用于桌面和您的浏览器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cars10/elasticvue" target="_blank">https://github.com/cars10/elasticvue</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>DirectoryTree/ImapEngine: 将 IMAP 邮箱交互集成到您的 PHP 应用程序中。</title>
<pubDate>Mon, 10 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/DirectoryTree/ImapEngine</link>
<guid>https://github.com/DirectoryTree/ImapEngine</guid>
<content:encoded><![CDATA[<a href="https://github.com/DirectoryTree/ImapEngine" target="_blank">DirectoryTree/ImapEngine: 将 IMAP 邮箱交互集成到您的 PHP 应用程序中。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/DirectoryTree/ImapEngine" target="_blank">https://github.com/DirectoryTree/ImapEngine</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>DirectoryTree/Dummy: 生成填充了虚拟数据的 PHP 类实例</title>
<pubDate>Mon, 10 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/DirectoryTree/Dummy</link>
<guid>https://github.com/DirectoryTree/Dummy</guid>
<content:encoded><![CDATA[<a href="https://github.com/DirectoryTree/Dummy" target="_blank">DirectoryTree/Dummy: 生成填充了虚拟数据的 PHP 类实例</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/DirectoryTree/Dummy" target="_blank">https://github.com/DirectoryTree/Dummy</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>wakatime/jetbrains-wakatime: WakaTime 是一个开源 Jetbrains 插件,用于从您的编程活动自动生成指标、见解和时间跟踪。</title>
<pubDate>Sun, 09 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/wakatime/jetbrains-wakatime</link>
<guid>https://github.com/wakatime/jetbrains-wakatime</guid>
<content:encoded><![CDATA[<a href="https://github.com/wakatime/jetbrains-wakatime" target="_blank">wakatime/jetbrains-wakatime: WakaTime 是一个开源 Jetbrains 插件,用于从您的编程活动自动生成指标、见解和时间跟踪。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/wakatime/jetbrains-wakatime" target="_blank">https://github.com/wakatime/jetbrains-wakatime</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>spatie/laravel-onboard: 一个 Laravel 包,用于帮助跟踪用户引导步骤</title>
<pubDate>Sat, 08 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/spatie/laravel-onboard</link>
<guid>https://github.com/spatie/laravel-onboard</guid>
<content:encoded><![CDATA[<a href="https://github.com/spatie/laravel-onboard" target="_blank">spatie/laravel-onboard: 一个 Laravel 包,用于帮助跟踪用户引导步骤</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/spatie/laravel-onboard" target="_blank">https://github.com/spatie/laravel-onboard</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>junstyle/vscode-php-cs-fixer: VS Code 的 PHP CS Fixer 扩展</title>
<pubDate>Fri, 07 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/junstyle/vscode-php-cs-fixer</link>
<guid>https://github.com/junstyle/vscode-php-cs-fixer</guid>
<content:encoded><![CDATA[<a href="https://github.com/junstyle/vscode-php-cs-fixer" target="_blank">junstyle/vscode-php-cs-fixer: VS Code 的 PHP CS Fixer 扩展</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/junstyle/vscode-php-cs-fixer" target="_blank">https://github.com/junstyle/vscode-php-cs-fixer</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>aniftyco/skeletor: 召唤 Skeletor 的仆从:一个 Composer 伴侣,通过每个“create-project”命令释放额外的功能。</title>
<pubDate>Fri, 07 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/aniftyco/skeletor</link>
<guid>https://github.com/aniftyco/skeletor</guid>
<content:encoded><![CDATA[<a href="https://github.com/aniftyco/skeletor" target="_blank">aniftyco/skeletor: 召唤 Skeletor 的仆从:一个 Composer 伴侣,通过每个“create-project”命令释放额外的功能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/aniftyco/skeletor" target="_blank">https://github.com/aniftyco/skeletor</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>benbjurstrom/otpz: Laravel 无密码 OTP 登录解决方案</title>
<pubDate>Fri, 07 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/benbjurstrom/otpz</link>
<guid>https://github.com/benbjurstrom/otpz</guid>
<content:encoded><![CDATA[<a href="https://github.com/benbjurstrom/otpz" target="_blank">benbjurstrom/otpz: Laravel 无密码 OTP 登录解决方案</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/benbjurstrom/otpz" target="_blank">https://github.com/benbjurstrom/otpz</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>spatie/laravel-backup-server:轻松设置备份服务器以存储和管理来自多个 Laravel 应用程序的备份。</title>
<pubDate>Thu, 06 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/spatie/laravel-backup-server</link>
<guid>https://github.com/spatie/laravel-backup-server</guid>
<content:encoded><![CDATA[<a href="https://github.com/spatie/laravel-backup-server" target="_blank">spatie/laravel-backup-server:轻松设置备份服务器以存储和管理来自多个 Laravel 应用程序的备份。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/spatie/laravel-backup-server" target="_blank">https://github.com/spatie/laravel-backup-server</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Mahmoud-Italy/laraotel-opentelemetry-laravel: 此软件包提供了一种简单的方法,可以使用从 OpenTelemetry Otel 到 Laravel 应用程序的遥测来测量作业和服务的性能。</title>
<pubDate>Thu, 06 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/Mahmoud-Italy/laraotel-opentelemetry-laravel</link>
<guid>https://github.com/Mahmoud-Italy/laraotel-opentelemetry-laravel</guid>
<content:encoded><![CDATA[<a href="https://github.com/Mahmoud-Italy/laraotel-opentelemetry-laravel" target="_blank">Mahmoud-Italy/laraotel-opentelemetry-laravel: 此软件包提供了一种简单的方法,可以使用从 OpenTelemetry Otel 到 Laravel 应用程序的遥测来测量作业和服务的性能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Mahmoud-Italy/laraotel-opentelemetry-laravel" target="_blank">https://github.com/Mahmoud-Italy/laraotel-opentelemetry-laravel</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>packistry/packistry: 用于 PHP 软件包的开源、自托管、Composer 存储库</title>
<pubDate>Thu, 06 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/packistry/packistry</link>
<guid>https://github.com/packistry/packistry</guid>
<content:encoded><![CDATA[<a href="https://github.com/packistry/packistry" target="_blank">packistry/packistry: 用于 PHP 软件包的开源、自托管、Composer 存储库</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/packistry/packistry" target="_blank">https://github.com/packistry/packistry</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>maantje/pulse-database: 用于数据库状态的 Laravel Pulse 卡</title>
<pubDate>Wed, 05 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/maantje/pulse-database</link>
<guid>https://github.com/maantje/pulse-database</guid>
<content:encoded><![CDATA[<a href="https://github.com/maantje/pulse-database" target="_blank">maantje/pulse-database: 用于数据库状态的 Laravel Pulse 卡</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/maantje/pulse-database" target="_blank">https://github.com/maantje/pulse-database</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>maantje/pulse-php-fpm: 适用于 Laravel Pulse 的 PHP FPM 状态卡</title>
<pubDate>Wed, 05 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/maantje/pulse-php-fpm</link>
<guid>https://github.com/maantje/pulse-php-fpm</guid>
<content:encoded><![CDATA[<a href="https://github.com/maantje/pulse-php-fpm" target="_blank">maantje/pulse-php-fpm: 适用于 Laravel Pulse 的 PHP FPM 状态卡</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/maantje/pulse-php-fpm" target="_blank">https://github.com/maantje/pulse-php-fpm</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Yoast/PHPUnit-Polyfills: 一组 polyfill,用于更改 PHPUnit 功能,允许创建 PHPUnit 跨版本兼容测试</title>
<pubDate>Wed, 05 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/Yoast/PHPUnit-Polyfills</link>
<guid>https://github.com/Yoast/PHPUnit-Polyfills</guid>
<content:encoded><![CDATA[<a href="https://github.com/Yoast/PHPUnit-Polyfills" target="_blank">Yoast/PHPUnit-Polyfills: 一组 polyfill,用于更改 PHPUnit 功能,允许创建 PHPUnit 跨版本兼容测试</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Yoast/PHPUnit-Polyfills" target="_blank">https://github.com/Yoast/PHPUnit-Polyfills</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>php-ds/polyfill: PHP 的数据结构</title>
<pubDate>Tue, 04 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/php-ds/polyfill</link>
<guid>https://github.com/php-ds/polyfill</guid>
<content:encoded><![CDATA[<a href="https://github.com/php-ds/polyfill" target="_blank">php-ds/polyfill: PHP 的数据结构</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/php-ds/polyfill" target="_blank">https://github.com/php-ds/polyfill</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>BenMorel/weakmap-polyfill: 用于 PHP 7.4 的 WeakMap polyfill</title>
<pubDate>Tue, 04 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/BenMorel/weakmap-polyfill</link>
<guid>https://github.com/BenMorel/weakmap-polyfill</guid>
<content:encoded><![CDATA[<a href="https://github.com/BenMorel/weakmap-polyfill" target="_blank">BenMorel/weakmap-polyfill: 用于 PHP 7.4 的 WeakMap polyfill</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/BenMorel/weakmap-polyfill" target="_blank">https://github.com/BenMorel/weakmap-polyfill</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>abreksa4/mysql-escape-string-polyfill: 对于非常有限的用例来说,一个非常不安全的 mysql_escape_string 实现</title>
<pubDate>Tue, 04 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/abreksa4/mysql-escape-string-polyfill</link>
<guid>https://github.com/abreksa4/mysql-escape-string-polyfill</guid>
<content:encoded><![CDATA[<a href="https://github.com/abreksa4/mysql-escape-string-polyfill" target="_blank">abreksa4/mysql-escape-string-polyfill: 对于非常有限的用例来说,一个非常不安全的 mysql_escape_string 实现</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/abreksa4/mysql-escape-string-polyfill" target="_blank">https://github.com/abreksa4/mysql-escape-string-polyfill</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>roukmoute/polyfill-calendar: Calendar 扩展的 PHP Polyfill</title>
<pubDate>Mon, 03 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/roukmoute/polyfill-calendar</link>
<guid>https://github.com/roukmoute/polyfill-calendar</guid>
<content:encoded><![CDATA[<a href="https://github.com/roukmoute/polyfill-calendar" target="_blank">roukmoute/polyfill-calendar: Calendar 扩展的 PHP Polyfill</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/roukmoute/polyfill-calendar" target="_blank">https://github.com/roukmoute/polyfill-calendar</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>ChristiaanBye/polyfill-each: PHP 8.x polyfill 用于已删除的 each () 函数</title>
<pubDate>Mon, 03 Feb 2025 08:00:00 +0000</pubDate>
<link> 函数](https://github.com/ChristiaanBye/polyfill-each</link>
<guid isPermaLink="false"> 函数](https://github.com/ChristiaanBye/polyfill-each</guid>
<content:encoded><![CDATA[<a href=" 函数](https://github.com/ChristiaanBye/polyfill-each" target="_blank">ChristiaanBye/polyfill-each: PHP 8.x polyfill 用于已删除的 each () 函数</a>
<h3>相关链接</h3>
<ul>
<li><a href=" 函数](https://github.com/ChristiaanBye/polyfill-each" target="_blank"> 函数](https://github.com/ChristiaanBye/polyfill-each</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jonathanlermitage/ij-ilove-devtoys: 基于 IntelliJ IDEA 的 IDE 插件,受到 DevToys 软件的高度启发,提供了哈希工具、多种数据转换和生成工具、转义工具、集合差异查看器等功能。</title>
<pubDate>Thu, 06 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/jonathanlermitage/ij-ilove-devtoys</link>
<guid>https://github.com/jonathanlermitage/ij-ilove-devtoys</guid>
<content:encoded><![CDATA[<a href="https://github.com/jonathanlermitage/ij-ilove-devtoys" target="_blank">jonathanlermitage/ij-ilove-devtoys: 基于 IntelliJ IDEA 的 IDE 插件,受到 DevToys 软件的高度启发,提供了哈希工具、多种数据转换和生成工具、转义工具、集合差异查看器等功能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/jonathanlermitage/ij-ilove-devtoys" target="_blank">https://github.com/jonathanlermitage/ij-ilove-devtoys</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>behastan/behastan: 用于 Behat 检验的 Modren 静态分析</title>
<pubDate>Thu, 06 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/behastan/behastan</link>
<guid>https://github.com/behastan/behastan</guid>
<content:encoded><![CDATA[<a href="https://github.com/behastan/behastan" target="_blank">behastan/behastan: 用于 Behat 检验的 Modren 静态分析</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/behastan/behastan" target="_blank">https://github.com/behastan/behastan</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>meanmail-dev/nginx-intellij-plugin: Intellij Plugin for Nginx 配置文件</title>
<pubDate>Wed, 05 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/meanmail-dev/nginx-intellij-plugin</link>
<guid>https://github.com/meanmail-dev/nginx-intellij-plugin</guid>
<content:encoded><![CDATA[<a href="https://github.com/meanmail-dev/nginx-intellij-plugin" target="_blank">meanmail-dev/nginx-intellij-plugin: Intellij Plugin for Nginx 配置文件</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/meanmail-dev/nginx-intellij-plugin" target="_blank">https://github.com/meanmail-dev/nginx-intellij-plugin</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>carlrobertoh/CodeGPT: 适用于 JetBrains 的领先开源 AI 副驾驶。连接到任何环境中的任何模型,并以您喜欢的任何方式自定义您的编码体验。</title>
<pubDate>Wed, 05 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/carlrobertoh/CodeGPT</link>
<guid>https://github.com/carlrobertoh/CodeGPT</guid>
<content:encoded><![CDATA[<a href="https://github.com/carlrobertoh/CodeGPT" target="_blank">carlrobertoh/CodeGPT: 适用于 JetBrains 的领先开源 AI 副驾驶。连接到任何环境中的任何模型,并以您喜欢的任何方式自定义您的编码体验。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/carlrobertoh/CodeGPT" target="_blank">https://github.com/carlrobertoh/CodeGPT</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>samsonasik/ErrorHeroModule: 💎 一个英雄,用于您的 Zend Framework/Laminas 和 Expressive/Mezzio 应用程序在 Mvc 过程中/请求和响应之间记录 (DB 和 Mail) 并处理 php 错误和异常。</title>
<pubDate>Tue, 04 Feb 2025 16:00:00 +0000</pubDate>
<link>DB 和 Mail) 并处理 php 错误和异常。](https://github.com/samsonasik/ErrorHeroModule</link>
<guid isPermaLink="false">DB 和 Mail) 并处理 php 错误和异常。](https://github.com/samsonasik/ErrorHeroModule</guid>
<content:encoded><![CDATA[<a href="DB 和 Mail) 并处理 php 错误和异常。](https://github.com/samsonasik/ErrorHeroModule" target="_blank">samsonasik/ErrorHeroModule: 💎 一个英雄,用于您的 Zend Framework/Laminas 和 Expressive/Mezzio 应用程序在 Mvc 过程中/请求和响应之间记录 (DB 和 Mail) 并处理 php 错误和异常。</a>
<h3>相关链接</h3>
<ul>
<li><a href="DB 和 Mail) 并处理 php 错误和异常。](https://github.com/samsonasik/ErrorHeroModule" target="_blank">DB 和 Mail) 并处理 php 错误和异常。](https://github.com/samsonasik/ErrorHeroModule</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>samsonasik/ArrayLookup: 🚀 一个快速查找库,可帮助您验证和搜索数组和 Traversable 数据。</title>
<pubDate>Tue, 04 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/samsonasik/ArrayLookup</link>
<guid>https://github.com/samsonasik/ArrayLookup</guid>
<content:encoded><![CDATA[<a href="https://github.com/samsonasik/ArrayLookup" target="_blank">samsonasik/ArrayLookup: 🚀 一个快速查找库,可帮助您验证和搜索数组和 Traversable 数据。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/samsonasik/ArrayLookup" target="_blank">https://github.com/samsonasik/ArrayLookup</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>samsonasik/ForceHttpsModule: 🔗 用于在 Zend Framework/Laminas Mvc 和 ZF Expressive/Mezzio 应用程序中强制 https 的可配置模块。</title>
<pubDate>Tue, 04 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/samsonasik/ForceHttpsModule</link>
<guid>https://github.com/samsonasik/ForceHttpsModule</guid>
<content:encoded><![CDATA[<a href="https://github.com/samsonasik/ForceHttpsModule" target="_blank">samsonasik/ForceHttpsModule: 🔗 用于在 Zend Framework/Laminas Mvc 和 ZF Expressive/Mezzio 应用程序中强制 https 的可配置模块。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/samsonasik/ForceHttpsModule" target="_blank">https://github.com/samsonasik/ForceHttpsModule</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>cline/cline: IDE 中的自主编码代理,能够在您的许可下创建/编辑文件、执行命令、使用浏览器等。</title>
<pubDate>Mon, 03 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/cline/cline</link>
<guid>https://github.com/cline/cline</guid>
<content:encoded><![CDATA[<a href="https://github.com/cline/cline" target="_blank">cline/cline: IDE 中的自主编码代理,能够在您的许可下创建/编辑文件、执行命令、使用浏览器等。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cline/cline" target="_blank">https://github.com/cline/cline</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>AutomaApp/automa: 一个浏览器扩展,用于通过连接块来自动化您的浏览器</title>
<pubDate>Mon, 03 Feb 2025 16:00:00 +0000</pubDate>
<link>https://github.com/AutomaApp/automa</link>
<guid>https://github.com/AutomaApp/automa</guid>
<content:encoded><![CDATA[<a href="https://github.com/AutomaApp/automa" target="_blank">AutomaApp/automa: 一个浏览器扩展,用于通过连接块来自动化您的浏览器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/AutomaApp/automa" target="_blank">https://github.com/AutomaApp/automa</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>tmdh/laravel-kit: 桌面 Laravel 管理面板应用程序</title>
<pubDate>Mon, 03 Feb 2025 08:00:00 +0000</pubDate>
<link>https://github.com/tmdh/laravel-kit</link>
<guid>https://github.com/tmdh/laravel-kit</guid>
<content:encoded><![CDATA[<a href="https://github.com/tmdh/laravel-kit" target="_blank">tmdh/laravel-kit: 桌面 Laravel 管理面板应用程序</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/tmdh/laravel-kit" target="_blank">https://github.com/tmdh/laravel-kit</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>sethsandaru/eloquent-docs: 轻松为您的 Eloquent 模型生成 phpDoc</title>
<pubDate>Mon, 03 Feb 2025 00:00:00 +0000</pubDate>
<link>https://github.com/sethsandaru/eloquent-docs</link>
<guid>https://github.com/sethsandaru/eloquent-docs</guid>
<content:encoded><![CDATA[<a href="https://github.com/sethsandaru/eloquent-docs" target="_blank">sethsandaru/eloquent-docs: 轻松为您的 Eloquent 模型生成 phpDoc</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/sethsandaru/eloquent-docs" target="_blank">https://github.com/sethsandaru/eloquent-docs</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>stalwartlabs/mail-server: 安全且现代的一体化邮件服务器 (IMAP、JMAP、POP3、SMTP)</title>
<pubDate>Sat, 01 Feb 2025 16:00:00 +0000</pubDate>
<link>IMAP、JMAP、POP3、SMTP)](https://github.com/stalwartlabs/mail-server</link>
<guid isPermaLink="false">IMAP、JMAP、POP3、SMTP)](https://github.com/stalwartlabs/mail-server</guid>
<content:encoded><![CDATA[<a href="IMAP、JMAP、POP3、SMTP)](https://github.com/stalwartlabs/mail-server" target="_blank">stalwartlabs/mail-server: 安全且现代的一体化邮件服务器 (IMAP、JMAP、POP3、SMTP)</a>
<h3>相关链接</h3>
<ul>
<li><a href="IMAP、JMAP、POP3、SMTP)](https://github.com/stalwartlabs/mail-server" target="_blank">IMAP、JMAP、POP3、SMTP)](https://github.com/stalwartlabs/mail-server</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>hiddify/hiddify-app: 多平台自动代理客户端,支持 Sing-box、X-ray、TUIC、Hysteria、Reality、Trojan、SSH 等。它是一个开源、安全且无广告的。</title>
<pubDate>Fri, 31 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/hiddify/hiddify-app</link>
<guid>https://github.com/hiddify/hiddify-app</guid>
<content:encoded><![CDATA[<a href="https://github.com/hiddify/hiddify-app" target="_blank">hiddify/hiddify-app: 多平台自动代理客户端,支持 Sing-box、X-ray、TUIC、Hysteria、Reality、Trojan、SSH 等。它是一个开源、安全且无广告的。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/hiddify/hiddify-app" target="_blank">https://github.com/hiddify/hiddify-app</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>loupe-php/loupe: 一个全文搜索引擎,具有仅基于 PHP 和 SQLite 的词汇切分、词干提取、拼写错误容忍度、过滤器和地理支持。</title>
<pubDate>Fri, 31 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/loupe-php/loupe</link>
<guid>https://github.com/loupe-php/loupe</guid>
<content:encoded><![CDATA[<a href="https://github.com/loupe-php/loupe" target="_blank">loupe-php/loupe: 一个全文搜索引擎,具有仅基于 PHP 和 SQLite 的词汇切分、词干提取、拼写错误容忍度、过滤器和地理支持。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/loupe-php/loupe" target="_blank">https://github.com/loupe-php/loupe</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>carthage-software/mago: Mago 是一个 PHP 工具链,旨在提供一组工具来帮助开发人员编写更好的代码。</title>
<pubDate>Fri, 31 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/carthage-software/mago</link>
<guid>https://github.com/carthage-software/mago</guid>
<content:encoded><![CDATA[<a href="https://github.com/carthage-software/mago" target="_blank">carthage-software/mago: Mago 是一个 PHP 工具链,旨在提供一组工具来帮助开发人员编写更好的代码。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/carthage-software/mago" target="_blank">https://github.com/carthage-software/mago</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>smoqadam/pvm: 一个简单的 bash 脚本,用于管理 Linux 和 macOS 上的多个 PHP 版本。</title>
<pubDate>Thu, 30 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/smoqadam/pvm</link>
<guid>https://github.com/smoqadam/pvm</guid>
<content:encoded><![CDATA[<a href="https://github.com/smoqadam/pvm" target="_blank">smoqadam/pvm: 一个简单的 bash 脚本,用于管理 Linux 和 macOS 上的多个 PHP 版本。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/smoqadam/pvm" target="_blank">https://github.com/smoqadam/pvm</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>xepozz/meta-storm-idea-plugin: MetaStorm 将使您的 IDE 以前所未有的方式交互</title>
<pubDate>Thu, 30 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/xepozz/meta-storm-idea-plugin</link>
<guid>https://github.com/xepozz/meta-storm-idea-plugin</guid>
<content:encoded><![CDATA[<a href="https://github.com/xepozz/meta-storm-idea-plugin" target="_blank">xepozz/meta-storm-idea-plugin: MetaStorm 将使您的 IDE 以前所未有的方式交互</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/xepozz/meta-storm-idea-plugin" target="_blank">https://github.com/xepozz/meta-storm-idea-plugin</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>buggregator/phpstorm-plugin: 该插件将 Buggregator 集成到 JetBrains IDE 中,让您能够轻松调试代码。现在,您无需切换到另一个窗口或屏幕来查看转储,然后返回运行测试。一切都摆在您面前,所有的捷径都有效。</title>
<pubDate>Thu, 30 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/buggregator/phpstorm-plugin</link>
<guid>https://github.com/buggregator/phpstorm-plugin</guid>
<content:encoded><![CDATA[<a href="https://github.com/buggregator/phpstorm-plugin" target="_blank">buggregator/phpstorm-plugin: 该插件将 Buggregator 集成到 JetBrains IDE 中,让您能够轻松调试代码。现在,您无需切换到另一个窗口或屏幕来查看转储,然后返回运行测试。一切都摆在您面前,所有的捷径都有效。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/buggregator/phpstorm-plugin" target="_blank">https://github.com/buggregator/phpstorm-plugin</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>xepozz/crontab-intellij-plugin: Cron 和 Crontab 支持的公共存储库 Intellij 插件</title>
<pubDate>Wed, 29 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/xepozz/crontab-intellij-plugin</link>
<guid>https://github.com/xepozz/crontab-intellij-plugin</guid>
<content:encoded><![CDATA[<a href="https://github.com/xepozz/crontab-intellij-plugin" target="_blank">xepozz/crontab-intellij-plugin: Cron 和 Crontab 支持的公共存储库 Intellij 插件</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/xepozz/crontab-intellij-plugin" target="_blank">https://github.com/xepozz/crontab-intellij-plugin</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>构建可维护的 PHP 应用程序:数据传输对象</title>
<pubDate>Wed, 29 Jan 2025 08:00:00 +0000</pubDate>
<link>https://davorminchorov.com/articles/building-maintainable-php-applications-data-transfer-objects</link>
<guid>https://davorminchorov.com/articles/building-maintainable-php-applications-data-transfer-objects</guid>
<content:encoded><![CDATA[<a href="https://davorminchorov.com/articles/building-maintainable-php-applications-data-transfer-objects" target="_blank">构建可维护的 PHP 应用程序:数据传输对象</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://davorminchorov.com/articles/building-maintainable-php-applications-data-transfer-objects" target="_blank">https://davorminchorov.com/articles/building-maintainable-php-applications-data-transfer-objects</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mstange/samply: 适用于 macOS 和 Linux 的命令行采样剖析器</title>
<pubDate>Tue, 28 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/mstange/samply</link>
<guid>https://github.com/mstange/samply</guid>
<content:encoded><![CDATA[<a href="https://github.com/mstange/samply" target="_blank">mstange/samply: 适用于 macOS 和 Linux 的命令行采样剖析器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mstange/samply" target="_blank">https://github.com/mstange/samply</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>chevere/workflow: PHP 库,用于定义和执行具有并行处理功能的工作流。允许创建具有依赖关系、条件执行和变量注入的复杂任务链。</title>
<pubDate>Sun, 26 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/chevere/workflow</link>
<guid>https://github.com/chevere/workflow</guid>
<content:encoded><![CDATA[<a href="https://github.com/chevere/workflow" target="_blank">chevere/workflow: PHP 库,用于定义和执行具有并行处理功能的工作流。允许创建具有依赖关系、条件执行和变量注入的复杂任务链。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/chevere/workflow" target="_blank">https://github.com/chevere/workflow</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>yassinebenaid/bunster: 将 shell 脚本编译为静态二进制文件。</title>
<pubDate>Sat, 25 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/yassinebenaid/bunster</link>
<guid>https://github.com/yassinebenaid/bunster</guid>
<content:encoded><![CDATA[<a href="https://github.com/yassinebenaid/bunster" target="_blank">yassinebenaid/bunster: 将 shell 脚本编译为静态二进制文件。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/yassinebenaid/bunster" target="_blank">https://github.com/yassinebenaid/bunster</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>TheBoredTeam/boring.notch: TheBoringNotch:不那么无聊的 Notch That Rocks 🎸🎶</title>
<pubDate>Fri, 24 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/TheBoredTeam/boring.notch</link>
<guid>https://github.com/TheBoredTeam/boring.notch</guid>
<content:encoded><![CDATA[<a href="https://github.com/TheBoredTeam/boring.notch" target="_blank">TheBoredTeam/boring.notch: TheBoringNotch:不那么无聊的 Notch That Rocks 🎸🎶</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/TheBoredTeam/boring.notch" target="_blank">https://github.com/TheBoredTeam/boring.notch</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>webui-dev/go-webui: 使用任何 Web 浏览器作为 GUI,后端使用 Go,前端使用现代 Web 技术。</title>
<pubDate>Fri, 24 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/webui-dev/go-webui</link>
<guid>https://github.com/webui-dev/go-webui</guid>
<content:encoded><![CDATA[<a href="https://github.com/webui-dev/go-webui" target="_blank">webui-dev/go-webui: 使用任何 Web 浏览器作为 GUI,后端使用 Go,前端使用现代 Web 技术。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/webui-dev/go-webui" target="_blank">https://github.com/webui-dev/go-webui</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>azjezz/php-pretty-diff: PHP + Rust:如何在 PHP 项目中使用 Rust 代码</title>
<pubDate>Thu, 23 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/azjezz/php-pretty-diff</link>
<guid>https://github.com/azjezz/php-pretty-diff</guid>
<content:encoded><![CDATA[<a href="https://github.com/azjezz/php-pretty-diff" target="_blank">azjezz/php-pretty-diff: PHP + Rust:如何在 PHP 项目中使用 Rust 代码</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/azjezz/php-pretty-diff" target="_blank">https://github.com/azjezz/php-pretty-diff</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>cdsmths/laravel-ocr-space: Laravel OCR Space 是一个软件包,允许您在 Laravel 应用程序中使用 OCR.Space API 进行光学字符识别 (OCR)。</title>
<pubDate>Wed, 22 Jan 2025 16:00:00 +0000</pubDate>
<link>OCR)。](https://github.com/cdsmths/laravel-ocr-space</link>
<guid isPermaLink="false">OCR)。](https://github.com/cdsmths/laravel-ocr-space</guid>
<content:encoded><![CDATA[<a href="OCR)。](https://github.com/cdsmths/laravel-ocr-space" target="_blank">cdsmths/laravel-ocr-space: Laravel OCR Space 是一个软件包,允许您在 Laravel 应用程序中使用 OCR.Space API 进行光学字符识别 (OCR)。</a>
<h3>相关链接</h3>
<ul>
<li><a href="OCR)。](https://github.com/cdsmths/laravel-ocr-space" target="_blank">OCR)。](https://github.com/cdsmths/laravel-ocr-space</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>avocet-shores/laravel-rewind: Laravel Rewind 是一个功能强大且高效的版本控制包,适用于您的 Eloquent 模型</title>
<pubDate>Wed, 22 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/avocet-shores/laravel-rewind</link>
<guid>https://github.com/avocet-shores/laravel-rewind</guid>
<content:encoded><![CDATA[<a href="https://github.com/avocet-shores/laravel-rewind" target="_blank">avocet-shores/laravel-rewind: Laravel Rewind 是一个功能强大且高效的版本控制包,适用于您的 Eloquent 模型</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/avocet-shores/laravel-rewind" target="_blank">https://github.com/avocet-shores/laravel-rewind</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>sapics/ip-location-db: sapics/ip-location-db:</title>
<pubDate>Tue, 21 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/sapics/ip-location-db</link>
<guid>https://github.com/sapics/ip-location-db</guid>
<content:encoded><![CDATA[<a href="https://github.com/sapics/ip-location-db" target="_blank">sapics/ip-location-db: sapics/ip-location-db:</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/sapics/ip-location-db" target="_blank">https://github.com/sapics/ip-location-db</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>sapics/ip-location-db: 通过 ASN、GeoFeed、Whois、iptoasn.com、db-ip lite、GeoLite2 的 IP 到位置数据库</title>
<pubDate>Tue, 21 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/sapics/ip-location-db</link>
<guid>https://github.com/sapics/ip-location-db</guid>
<content:encoded><![CDATA[<a href="https://github.com/sapics/ip-location-db" target="_blank">sapics/ip-location-db: 通过 ASN、GeoFeed、Whois、iptoasn.com、db-ip lite、GeoLite2 的 IP 到位置数据库</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/sapics/ip-location-db" target="_blank">https://github.com/sapics/ip-location-db</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mjelamanov/psr18-guzzle: 用于 guzzle 6 客户端的 PSR-18 适配器</title>
<pubDate>Tue, 21 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/mjelamanov/psr18-guzzle</link>
<guid>https://github.com/mjelamanov/psr18-guzzle</guid>
<content:encoded><![CDATA[<a href="https://github.com/mjelamanov/psr18-guzzle" target="_blank">mjelamanov/psr18-guzzle: 用于 guzzle 6 客户端的 PSR-18 适配器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mjelamanov/psr18-guzzle" target="_blank">https://github.com/mjelamanov/psr18-guzzle</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Stillat/dagger: 适用于 Laravel Blade 的强大组件创作库。</title>
<pubDate>Mon, 20 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/Stillat/dagger</link>
<guid>https://github.com/Stillat/dagger</guid>
<content:encoded><![CDATA[<a href="https://github.com/Stillat/dagger" target="_blank">Stillat/dagger: 适用于 Laravel Blade 的强大组件创作库。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Stillat/dagger" target="_blank">https://github.com/Stillat/dagger</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>HandBrake/HandBrake:HandBrake 是一款适用于 Linux、Mac 和 Windows 的开源视频转码器</title>
<pubDate>Sat, 18 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/HandBrake/HandBrake</link>
<guid>https://github.com/HandBrake/HandBrake</guid>
<content:encoded><![CDATA[<a href="https://github.com/HandBrake/HandBrake" target="_blank">HandBrake/HandBrake:HandBrake 是一款适用于 Linux、Mac 和 Windows 的开源视频转码器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/HandBrake/HandBrake" target="_blank">https://github.com/HandBrake/HandBrake</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>alfg/ffmpeg-commander: 🛠️ FFmpeg 命令生成器 Web UI</title>
<pubDate>Sat, 18 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/alfg/ffmpeg-commander</link>
<guid>https://github.com/alfg/ffmpeg-commander</guid>
<content:encoded><![CDATA[<a href="https://github.com/alfg/ffmpeg-commander" target="_blank">alfg/ffmpeg-commander: 🛠️ FFmpeg 命令生成器 Web UI</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/alfg/ffmpeg-commander" target="_blank">https://github.com/alfg/ffmpeg-commander</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>savannabits/api-keys: 使用 API 密钥验证您的 Laravel API</title>
<pubDate>Sat, 18 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/savannabits/api-keys</link>
<guid>https://github.com/savannabits/api-keys</guid>
<content:encoded><![CDATA[<a href="https://github.com/savannabits/api-keys" target="_blank">savannabits/api-keys: 使用 API 密钥验证您的 Laravel API</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/savannabits/api-keys" target="_blank">https://github.com/savannabits/api-keys</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mainframecomputer/fullmoon-ios: fullmoon 是一款 iOS 应用程序,用于与本地大型语言模型聊天,它针对 Apple silicon 进行了优化,可在 iPhone、iPad 和 Mac 上运行。您的聊天记录会保存在本地,您还可以自定义应用程序的外观。</title>
<pubDate>Fri, 17 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/mainframecomputer/fullmoon-ios</link>
<guid>https://github.com/mainframecomputer/fullmoon-ios</guid>
<content:encoded><![CDATA[<a href="https://github.com/mainframecomputer/fullmoon-ios" target="_blank">mainframecomputer/fullmoon-ios: fullmoon 是一款 iOS 应用程序,用于与本地大型语言模型聊天,它针对 Apple silicon 进行了优化,可在 iPhone、iPad 和 Mac 上运行。您的聊天记录会保存在本地,您还可以自定义应用程序的外观。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mainframecomputer/fullmoon-ios" target="_blank">https://github.com/mainframecomputer/fullmoon-ios</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Naoray/laravel-github-monolog: GitHub 问题的 Laravel 日志频道</title>
<pubDate>Fri, 17 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/Naoray/laravel-github-monolog</link>
<guid>https://github.com/Naoray/laravel-github-monolog</guid>
<content:encoded><![CDATA[<a href="https://github.com/Naoray/laravel-github-monolog" target="_blank">Naoray/laravel-github-monolog: GitHub 问题的 Laravel 日志频道</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Naoray/laravel-github-monolog" target="_blank">https://github.com/Naoray/laravel-github-monolog</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>alexpasmantier/television: 是一款快速且多功能的模糊查找器 TUI。</title>
<pubDate>Fri, 17 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/alexpasmantier/television</link>
<guid>https://github.com/alexpasmantier/television</guid>
<content:encoded><![CDATA[<a href="https://github.com/alexpasmantier/television" target="_blank">alexpasmantier/television: 是一款快速且多功能的模糊查找器 TUI。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/alexpasmantier/television" target="_blank">https://github.com/alexpasmantier/television</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>damms005/devdb-vscode: 零配置 VS Code 数据库扩展,具有辅助开发和调试的功能。</title>
<pubDate>Thu, 16 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/damms005/devdb-vscode</link>
<guid>https://github.com/damms005/devdb-vscode</guid>
<content:encoded><![CDATA[<a href="https://github.com/damms005/devdb-vscode" target="_blank">damms005/devdb-vscode: 零配置 VS Code 数据库扩展,具有辅助开发和调试的功能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/damms005/devdb-vscode" target="_blank">https://github.com/damms005/devdb-vscode</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>byawitz/ggh: 调用您的 SSH 会话 (同时搜索您的 SSH 配置文件)</title>
<pubDate>Thu, 16 Jan 2025 08:00:00 +0000</pubDate>
<link>同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</link>
<guid isPermaLink="false">同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</guid>
<content:encoded><![CDATA[<a href="同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/" target="_blank">byawitz/ggh: 调用您的 SSH 会话 (同时搜索您的 SSH 配置文件)</a>
<h3>相关链接</h3>
<ul>
<li><a href="同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/" target="_blank">同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nimbly/Syndicate: 强大的队列和 pubsub 消息发布者和使用者框架。</title>
<pubDate>Thu, 16 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/nimbly/Syndicate</link>
<guid>https://github.com/nimbly/Syndicate</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly/Syndicate" target="_blank">nimbly/Syndicate: 强大的队列和 pubsub 消息发布者和使用者框架。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly/Syndicate" target="_blank">https://github.com/nimbly/Syndicate</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>https://github.com/nimbly</title>
<pubDate>Thu, 16 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/nimbly</link>
<guid>https://github.com/nimbly</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly" target="_blank">https://github.com/nimbly</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly" target="_blank">https://github.com/nimbly</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nimbly/Carton: 一个简单的 PSR-11 容器实现。</title>
<pubDate>Thu, 16 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/nimbly/Carton</link>
<guid>https://github.com/nimbly/Carton</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly/Carton" target="_blank">nimbly/Carton: 一个简单的 PSR-11 容器实现。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly/Carton" target="_blank">https://github.com/nimbly/Carton</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jlorente/php-credit-cards: 一个 PHP 包,用于对借记卡和信用卡执行操作,例如验证品牌、数字和 Luhn 算法和格式。它验证了 Visa、Mastercard、American Express 等流行品牌。</title>
<pubDate>Wed, 15 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/jlorente/php-credit-cards</link>
<guid>https://github.com/jlorente/php-credit-cards</guid>
<content:encoded><![CDATA[<a href="https://github.com/jlorente/php-credit-cards" target="_blank">jlorente/php-credit-cards: 一个 PHP 包,用于对借记卡和信用卡执行操作,例如验证品牌、数字和 Luhn 算法和格式。它验证了 Visa、Mastercard、American Express 等流行品牌。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/jlorente/php-credit-cards" target="_blank">https://github.com/jlorente/php-credit-cards</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>simplesamlphp/assert: webmozart/assert 的包装器,使其在检查方法参数之外有用</title>
<pubDate>Wed, 15 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/simplesamlphp/assert</link>
<guid>https://github.com/simplesamlphp/assert</guid>
<content:encoded><![CDATA[<a href="https://github.com/simplesamlphp/assert" target="_blank">simplesamlphp/assert: webmozart/assert 的包装器,使其在检查方法参数之外有用</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/simplesamlphp/assert" target="_blank">https://github.com/simplesamlphp/assert</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>fschmtt/keycloak-rest-api-client-php: PHP 客户端与 Keycloak 的 Admin REST API 交互。</title>
<pubDate>Tue, 14 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/fschmtt/keycloak-rest-api-client-php</link>
<guid>https://github.com/fschmtt/keycloak-rest-api-client-php</guid>
<content:encoded><![CDATA[<a href="https://github.com/fschmtt/keycloak-rest-api-client-php" target="_blank">fschmtt/keycloak-rest-api-client-php: PHP 客户端与 Keycloak 的 Admin REST API 交互。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/fschmtt/keycloak-rest-api-client-php" target="_blank">https://github.com/fschmtt/keycloak-rest-api-client-php</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Jaennaet/pISSStream: macOS 菜单栏应用程序,可实时显示国际空间站的尿瓶装满情况</title>
<pubDate>Tue, 14 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/Jaennaet/pISSStream</link>
<guid>https://github.com/Jaennaet/pISSStream</guid>
<content:encoded><![CDATA[<a href="https://github.com/Jaennaet/pISSStream" target="_blank">Jaennaet/pISSStream: macOS 菜单栏应用程序,可实时显示国际空间站的尿瓶装满情况</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Jaennaet/pISSStream" target="_blank">https://github.com/Jaennaet/pISSStream</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mariovalney/laravel-keycloak-web-guard: 简单的 Keycloak Guard 到 Laravel Web 路由</title>
<pubDate>Tue, 14 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/mariovalney/laravel-keycloak-web-guard</link>
<guid>https://github.com/mariovalney/laravel-keycloak-web-guard</guid>
<content:encoded><![CDATA[<a href="https://github.com/mariovalney/laravel-keycloak-web-guard" target="_blank">mariovalney/laravel-keycloak-web-guard: 简单的 Keycloak Guard 到 Laravel Web 路由</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mariovalney/laravel-keycloak-web-guard" target="_blank">https://github.com/mariovalney/laravel-keycloak-web-guard</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>CodeWithKyrian/whisper.php: 借助 Whisper.cpp 和 OpenAI,PHP 中的本地语音转文本变得容易</title>
<pubDate>Mon, 13 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/CodeWithKyrian/whisper.php</link>
<guid>https://github.com/CodeWithKyrian/whisper.php</guid>
<content:encoded><![CDATA[<a href="https://github.com/CodeWithKyrian/whisper.php" target="_blank">CodeWithKyrian/whisper.php: 借助 Whisper.cpp 和 OpenAI,PHP 中的本地语音转文本变得容易</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/CodeWithKyrian/whisper.php" target="_blank">https://github.com/CodeWithKyrian/whisper.php</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>luadotsh/lua: 专为现代团队设计的开源、下一代可扩展 URL 缩短器。</title>
<pubDate>Mon, 13 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/luadotsh/lua</link>
<guid>https://github.com/luadotsh/lua</guid>
<content:encoded><![CDATA[<a href="https://github.com/luadotsh/lua" target="_blank">luadotsh/lua: 专为现代团队设计的开源、下一代可扩展 URL 缩短器。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/luadotsh/lua" target="_blank">https://github.com/luadotsh/lua</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>deepseek-php/deepseek-laravel: 用于 Deepseek PHP 客户端的 Laravel 包装器,用于与 laravel 应用程序的无缝 deepseek API 集成。</title>
<pubDate>Mon, 13 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/deepseek-php/deepseek-laravel</link>
<guid>https://github.com/deepseek-php/deepseek-laravel</guid>
<content:encoded><![CDATA[<a href="https://github.com/deepseek-php/deepseek-laravel" target="_blank">deepseek-php/deepseek-laravel: 用于 Deepseek PHP 客户端的 Laravel 包装器,用于与 laravel 应用程序的无缝 deepseek API 集成。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/deepseek-php/deepseek-laravel" target="_blank">https://github.com/deepseek-php/deepseek-laravel</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zackAJ/laravel-debounce: zackAJ/laravel-debounce: 一个 Laravel 包,可为您提供对作业、通知和 Artisan 命令的防抖效果,并提供很好的事件报告。</title>
<pubDate>Sun, 12 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/zackAJ/laravel-debounce</link>
<guid>https://github.com/zackAJ/laravel-debounce</guid>
<content:encoded><![CDATA[<a href="https://github.com/zackAJ/laravel-debounce" target="_blank">zackAJ/laravel-debounce: zackAJ/laravel-debounce: 一个 Laravel 包,可为您提供对作业、通知和 Artisan 命令的防抖效果,并提供很好的事件报告。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zackAJ/laravel-debounce" target="_blank">https://github.com/zackAJ/laravel-debounce</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>waadmawlood/laravel-model-metadata: 一个 Laravel 包,旨在通过 JSON 管理模型元数据,支持多种数据类型</title>
<pubDate>Sun, 12 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/waadmawlood/laravel-model-metadata</link>
<guid>https://github.com/waadmawlood/laravel-model-metadata</guid>
<content:encoded><![CDATA[<a href="https://github.com/waadmawlood/laravel-model-metadata" target="_blank">waadmawlood/laravel-model-metadata: 一个 Laravel 包,旨在通过 JSON 管理模型元数据,支持多种数据类型</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/waadmawlood/laravel-model-metadata" target="_blank">https://github.com/waadmawlood/laravel-model-metadata</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>debugly/ijkplayer: 基于 ijkplayer 的 iOS/macOS/tvOS 视频播放器,使用 FFmpeg 6,支持 Metal、hw accel、HDR、ass 字幕效果...</title>
<pubDate>Sun, 12 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/debugly/ijkplayer</link>
<guid>https://github.com/debugly/ijkplayer</guid>
<content:encoded><![CDATA[<a href="https://github.com/debugly/ijkplayer" target="_blank">debugly/ijkplayer: 基于 ijkplayer 的 iOS/macOS/tvOS 视频播放器,使用 FFmpeg 6,支持 Metal、hw accel、HDR、ass 字幕效果...</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/debugly/ijkplayer" target="_blank">https://github.com/debugly/ijkplayer</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>boyter/cs: 命令行代码 Pelunker 或代码搜索</title>
<pubDate>Sat, 11 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/boyter/cs</link>
<guid>https://github.com/boyter/cs</guid>
<content:encoded><![CDATA[<a href="https://github.com/boyter/cs" target="_blank">boyter/cs: 命令行代码 Pelunker 或代码搜索</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/boyter/cs" target="_blank">https://github.com/boyter/cs</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jaywcjlove/rightmenu-master: 通过右键单击菜单新建文件</title>
<pubDate>Sat, 11 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/jaywcjlove/rightmenu-master</link>
<guid>https://github.com/jaywcjlove/rightmenu-master</guid>
<content:encoded><![CDATA[<a href="https://github.com/jaywcjlove/rightmenu-master" target="_blank">jaywcjlove/rightmenu-master: 通过右键单击菜单新建文件</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/jaywcjlove/rightmenu-master" target="_blank">https://github.com/jaywcjlove/rightmenu-master</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>yafoo/pushme: PushMe,一个简单轻量的 Android 消息通知客户端!</title>
<pubDate>Sat, 11 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/yafoo/pushme</link>
<guid>https://github.com/yafoo/pushme</guid>
<content:encoded><![CDATA[<a href="https://github.com/yafoo/pushme" target="_blank">yafoo/pushme: PushMe,一个简单轻量的 Android 消息通知客户端!</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/yafoo/pushme" target="_blank">https://github.com/yafoo/pushme</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>