forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp.txt
1988 lines (1988 loc) · 108 KB
/
php.txt
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
[TestCase(@"https://github.com/laravel/laravel.git",
@"af7092275956a839e79f49158312241d3ea3b7f9", 9323)]
[TestCase(@"https://github.com/symfony/symfony.git",
@"c875acf3a264f852e4bb2ddc5987bb5426d41cda", 8237)]
[TestCase(@"https://github.com/EllisLab/CodeIgniter.git",
@"aeed15eb8556ab671507f17ef9a8cf28903999aa", 7477)]
[TestCase(@"https://github.com/cakephp/cakephp.git",
@"e9c9e9697d275e0e15277d21e23edbf975443425", 4670)]
[TestCase(@"https://github.com/zendframework/zf2.git",
@"0ce25cc36d430095dbc89f4de19dc319b4f90ee4", 4660)]
[TestCase(@"https://github.com/php-fig/fig-standards.git",
@"2e276153b8f084d5d552ae3cf86876bb06b20385", 4068)]
[TestCase(@"https://github.com/WordPress/WordPress.git",
@"77e2da21cf2925e1b809888969677184c3d34fec", 3790)]
[TestCase(@"https://github.com/domnikl/DesignPatternsPHP.git",
@"ed291cd959053366e9d9edba62d8633034f93b0b", 3757)]
[TestCase(@"https://github.com/composer/composer.git",
@"14f35e812cd41746c4a4a7a2dec2b2365c8cdc61", 3690)]
[TestCase(@"https://github.com/yiisoft/yii.git",
@"ffb9a06b2fdeef83098221334bfd34bc8c2e2aa6", 3682)]
[TestCase(@"https://github.com/sebastianbergmann/phpunit.git",
@"d8bd89e337ad2f810131b5e291d695b5671bbf23", 3619)]
[TestCase(@"https://github.com/zurb/ink.git",
@"af382061180d2f5efa9a088ed3ee005e575377d4", 3580)]
[TestCase(@"https://github.com/facebook/phabricator.git",
@"47245b1b59c7523af8f442ba05ffb4a4a8b41991", 3497)]
[TestCase(@"https://github.com/codeguy/Slim.git",
@"4906b77a07c7bd6ff1a99aea903e940a2d4fa106", 3487)]
[TestCase(@"https://github.com/facebook/facebook-php-sdk.git",
@"8a992afce97122556c4e42b0f1c1d60b9d49276d", 3392)]
[TestCase(@"https://github.com/fzaninotto/Faker.git",
@"89345a3ccc366bc14e0a984a086cc66028bd6411", 3366)]
[TestCase(@"https://github.com/Automattic/_s.git",
@"2d2f66f9a1e3ecd40fb6e5ba90e4e5a44ed3b5ae", 3258)]
[TestCase(@"https://github.com/guzzle/guzzle.git",
@"364fa40fb8dccbd1fb6da564a7996f75a36e8d36", 3170)]
[TestCase(@"https://github.com/ginatrapani/ThinkUp.git",
@"06bc738952cd534938ebd03fe05a8f1a0cb9d8b8", 3033)]
[TestCase(@"https://github.com/al3x/sovereign.git",
@"4349e03dfc4b53e75a78441ebd8ace93f8e4cd47", 2927)]
[TestCase(@"https://github.com/serbanghita/Mobile-Detect.git",
@"d70de7bfd0641d4d32a6f9c71e1f5d2839a5331e", 2862)]
[TestCase(@"https://github.com/kriswallsmith/assetic.git",
@"f2a5214034928d4c6849bc94cfd462ea832a50a8", 2435)]
[TestCase(@"https://github.com/abraham/twitteroauth.git",
@"4b775766fe3526ebc67ee20c97ff29a3b47bc5d8", 2304)]
[TestCase(@"https://github.com/subtlepatterns/SubtlePatterns.git",
@"6e056565a1254c967228aab60c9d9c7d0e63a7e3", 2271)]
[TestCase(@"https://github.com/PHPOffice/PHPExcel.git",
@"c2a277c447ca965bbe030cd83d6b92df95661541", 2240)]
[TestCase(@"https://github.com/yiisoft/yii2.git",
@"c501ae4f4d35343115733f9a6a09259050a78d8f", 2237)]
[TestCase(@"https://github.com/reactphp/react.git",
@"7b996f82dc8b4b974fb719ab26f54fce028960a8", 2192)]
[TestCase(@"https://github.com/fabpot/Twig.git",
@"c8366374d9d531029a6b031528b552c37e1b2e66", 2188)]
[TestCase(@"https://github.com/doctrine/doctrine2.git",
@"3a1e24e6801961128c27104919050d40d745030b", 2104)]
[TestCase(@"https://github.com/silexphp/Silex.git",
@"3cbf93cfb0eb41b216be453ff40a4fa17f1bdbcd", 2093)]
[TestCase(@"https://github.com/owncloud/core.git",
@"340089f270a778aeb296b1744821dcdb5878131e", 2077)]
[TestCase(@"https://github.com/piwik/piwik.git",
@"e3efda0492c51cfb786f67419ea3a94c76f15e25", 2066)]
[TestCase(@"https://github.com/Seldaek/monolog.git",
@"03000a7fcd4072bd7e1f99c8ce4328621c5773b9", 2054)]
[TestCase(@"https://github.com/leafo/lessphp.git",
@"b7cd5c79e82666bcd2dfadb304342311209fb527", 1929)]
[TestCase(@"https://github.com/avalanche123/Imagine.git",
@"f93b6895f4567136528448263cc1fe71ee8504ce", 1916)]
[TestCase(@"https://github.com/anchorcms/anchor-cms.git",
@"d0e113ade61f60cf2672037a687100eac5746330", 1859)]
[TestCase(@"https://github.com/laravel/framework.git",
@"627fc22cb2fdd343cb17b552955eb317860f023d", 1851)]
[TestCase(@"https://github.com/puphpet/puphpet.git",
@"e4012cbbe0fc3b200b4750bb79673a9f468c1b9e", 1803)]
[TestCase(@"https://github.com/pyrocms/pyrocms.git",
@"26b64c5dcab1bcb0590647f2576daa81f77ae86e", 1771)]
[TestCase(@"https://github.com/JeffreyWay/Laravel-4-Generators.git",
@"cf766fae573d35621c2f2a14f0710c5484edf3f0", 1703)]
[TestCase(@"https://github.com/philsturgeon/codeigniter-restserver.git",
@"2aa6fec9a05a04d530c58ce77716bba2ba4f46ca", 1684)]
[TestCase(@"https://github.com/bobthecow/mustache.php.git",
@"43dc9457a2089cf86c0f7fdb79fcdc516293a4b6", 1671)]
[TestCase(@"https://github.com/venomous0x/WhatsAPI.git",
@"5ad50b311d728752cee50b7c7ed00062df6cb740", 1613)]
[TestCase(@"https://github.com/PHPMailer/PHPMailer.git",
@"7b384d0bedf7feb1d3cdfaae689d8c5b68eb0515", 1600)]
[TestCase(@"https://github.com/fabpot/Goutte.git",
@"06a5451288ffddd204b10fa6c6f9ab2b86dd515d", 1584)]
[TestCase(@"https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate.git",
@"db289e22840277c26911d46972fe516ce309e430", 1543)]
[TestCase(@"https://github.com/cboden/Ratchet.git",
@"67cedf0ce6b6c7fbb5e305e0667ac219e655d561", 1473)]
[TestCase(@"https://github.com/ccoenraets/backbone-directory.git",
@"c5654ab50002a7865da849fbc743e7cea750a54e", 1468)]
[TestCase(@"https://github.com/gothfox/Tiny-Tiny-RSS.git",
@"cda0418af19f55669f16c14c838ee44bf6fd8c99", 1462)]
[TestCase(@"https://github.com/MattWilcox/Adaptive-Images.git",
@"faa87fd94fc59373df7c2e5bb605c7e3c28e38a4", 1454)]
[TestCase(@"https://github.com/drupal/drupal.git",
@"95614ce35deb112da18f1f8841632b718be816c7", 1439)]
[TestCase(@"https://github.com/simplebits/Pears.git",
@"bd6211cdd2bf08682716e0a0b080ebee5b90da0b", 1436)]
[TestCase(@"https://github.com/magento/magento2.git",
@"8611ea725e25c67683f3f7e533406291ae8a723b", 1431)]
[TestCase(@"https://github.com/geocoder-php/Geocoder.git",
@"972eed79fb50b6752b5154d391201f2ec7a8e11a", 1381)]
[TestCase(@"https://github.com/filp/whoops.git",
@"230da4810fc7fff67bf92061dc64eff4d451b68d", 1375)]
[TestCase(@"https://github.com/kohana/kohana.git",
@"338bea96dfa197e7864674dab6cef78958e1f1df", 1365)]
[TestCase(@"https://github.com/woothemes/woocommerce.git",
@"4afeb7926c912c2f5a9ac5fca6739274c9503014", 1365)]
[TestCase(@"https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress.git",
@"c9402b287b6ffcfbc0eeab4109ece8f1a5d25848", 1361)]
[TestCase(@"https://github.com/michelf/php-markdown.git",
@"6f952ee180e9bd345f3dd6005aa11e0f5dcbd1b8", 1347)]
[TestCase(@"https://github.com/briannesbitt/Carbon.git",
@"21c4cb4301969c7d85aee8a62eefdfa881413af0", 1334)]
[TestCase(@"https://github.com/themeskult/wp-svbtle.git",
@"45736be0e55e688a1111afe7d0f53d2ede79cfdb", 1330)]
[TestCase(@"https://github.com/fabpot/PHP-CS-Fixer.git",
@"5b601200086382cdb2c3c4b68b28487aabc287d2", 1320)]
[TestCase(@"https://github.com/fuel/fuel.git",
@"82f79d7d9be671fafcfd9ca405425501bf8d8634", 1313)]
[TestCase(@"https://github.com/wp-cli/wp-cli.git",
@"fd5a95f208bb0fa9422a03cf40091e1a7704e481", 1309)]
[TestCase(@"https://github.com/umpirsky/country-list.git",
@"19c2fb49a7eda5347170f8f8d723f92701468f60", 1306)]
[TestCase(@"https://github.com/nrk/predis.git",
@"83df2ef11c18ea490daf6a7a8789315f57f555a8", 1302)]
[TestCase(@"https://github.com/d11wtq/boris.git",
@"177f9b9f39e1ac4c668ab573844c530800fbbe5e", 1302)]
[TestCase(@"https://github.com/picocms/Pico.git",
@"184b18383f1595ace4d6c43ee25c59693610d635", 1289)]
[TestCase(@"https://github.com/usmanhalalit/charisma.git",
@"5a8e4fdbefe694bf6a3a9c86e41acf9abf5c06cb", 1288)]
[TestCase(@"https://github.com/mrclay/minify.git",
@"fb3931f8cd54a637b2a42170c3a9a1c4da9e69a9", 1287)]
[TestCase(@"https://github.com/Respect/Validation.git",
@"979c06997b6027a4780712e29999dffd53f7878f", 1270)]
[TestCase(@"https://github.com/omnipay/omnipay.git",
@"aa1de2346b365527486b16f0f07ff190effe6d3e", 1204)]
[TestCase(@"https://github.com/j4mie/idiorm.git",
@"11e964157a6a2c6128a0546673ad5e99ac1a62cd", 1200)]
[TestCase(@"https://github.com/rmccue/Requests.git",
@"81a917f6425a2194c89d74b12102614c3ed16b2e", 1190)]
[TestCase(@"https://github.com/benedmunds/CodeIgniter-Ion-Auth.git",
@"e083881869045eeee9f96f957a65872b9977450f", 1184)]
[TestCase(@"https://github.com/joomla/joomla-cms.git",
@"b3f84c58382f7024e02ff991a1d961571c2d5546", 1165)]
[TestCase(@"https://github.com/JosephLenton/PHP-Error.git",
@"9918dd5eeec527846d43c92a4c9880bfcdd0de14", 1150)]
[TestCase(@"https://github.com/phpDocumentor/phpDocumentor2.git",
@"9f58c140bd9b7bf2662485d035d84c2270fae864", 1141)]
[TestCase(@"https://github.com/TechEmpower/FrameworkBenchmarks.git",
@"4eeb8039e62caa8516e092e7e49663cefbcebbc5", 1131)]
[TestCase(@"https://github.com/ci-bonfire/Bonfire.git",
@"cdd0daf0ad10c7fd2fe83400833ea1badd9e6b6b", 1123)]
[TestCase(@"https://github.com/nikic/PHP-Parser.git",
@"c341ab2ecfa117b265c452666f11471e152c9416", 1120)]
[TestCase(@"https://github.com/chriso/klein.php.git",
@"376fd62813eb2008f3644e206d03002a3250122a", 1119)]
[TestCase(@"https://github.com/hybridauth/hybridauth.git",
@"e831fb60307fc0c355d1403cb4d2f58ca919d746", 1117)]
[TestCase(@"https://github.com/padraic/mockery.git",
@"4eff32b268a0db52b9abe36725cb775658ad3f1f", 1114)]
[TestCase(@"https://github.com/zendframework/ZendSkeletonApplication.git",
@"67cbbbf61897831ef1feda323be9845aa7d79682", 1110)]
[TestCase(@"https://github.com/dompdf/dompdf.git",
@"4c5b3c977579f45ec5cd815a32dea835e2416d6d", 1109)]
[TestCase(@"https://github.com/photo/frontend.git",
@"efde9393d144daa2d1133ce236be0289904addd6", 1108)]
[TestCase(@"https://github.com/bcosca/fatfree.git",
@"7c221c6dde27fd812af88d4bb614867911084e99", 1105)]
[TestCase(@"https://github.com/opencart/opencart.git",
@"93076dc43c53b9c593f425ec2de6221c91d1f2c9", 1097)]
[TestCase(@"https://github.com/gabordemooij/redbean.git",
@"4a59b3926c3e1fa636146cd91cf397e66e48d20e", 1080)]
[TestCase(@"https://github.com/pattern-lab/patternlab-php.git",
@"ff31431333113c553d2f299a49b783351229d026", 1077)]
[TestCase(@"https://github.com/thephpleague/flysystem.git",
@"387e012fa93878e3865ed8db1aa9daba8bf2f9c5", 1055)]
[TestCase(@"https://github.com/chrisboulton/php-resque.git",
@"610c4dcdbf3e7e5856f694384f3160db94850d1f", 1048)]
[TestCase(@"https://github.com/facebook/xhprof.git",
@"e83d1792569ecbc5ef14c50a00eb37094d4e6ad9", 1036)]
[TestCase(@"https://github.com/bolt/bolt.git",
@"ee68b23ed9a18a2fd3f05fbe8c013ac3b5078eaf", 1029)]
[TestCase(@"https://github.com/KnpLabs/Gaufrette.git",
@"c2b6af8eb6fc093409ee0753137817dce1673763", 1027)]
[TestCase(@"https://github.com/Sylius/Sylius.git",
@"6476bdef07eaa7bb8c2d092bbdb093c1a840044d", 1023)]
[TestCase(@"https://github.com/roundcube/roundcubemail.git",
@"a5f8c8307a9e4059dad2833712b9a612631a36ed", 1022)]
[TestCase(@"https://github.com/symfony/symfony-standard.git",
@"50aeda221a0328dccae905b8dafed67f97983bcf", 1006)]
[TestCase(@"https://github.com/Atlantic18/DoctrineExtensions.git",
@"f2cd33516faa4a773d576ad58d02e283467acdd0", 1003)]
[TestCase(@"https://github.com/aws/aws-sdk-php.git",
@"2a4355cac155aa3631cf9649f32a2584a3bb211a", 1000)]
[TestCase(@"https://github.com/Circa75/dropplets.git",
@"feb2e82b21ef7a7da484e17628160f866c2da6c0", 997)]
[TestCase(@"https://github.com/welaika/wordless.git",
@"e9f815592b7c3138c2c4a3f1de365c8abfd1d385", 994)]
[TestCase(@"https://github.com/panique/php-login.git",
@"350ffc9455617b24979535283258ea8a05b7cf33", 994)]
[TestCase(@"https://github.com/opauth/opauth.git",
@"3ff68e72c21a3691e5a87fc8c30e458edbb22990", 987)]
[TestCase(@"https://github.com/simplethemes/skeleton_wp.git",
@"55495c735bcb35f2e7752c6e62e29054bfc69892", 968)]
[TestCase(@"https://github.com/Behat/Behat.git",
@"05d75c23de7d594afd7542cd459ae2206f833552", 965)]
[TestCase(@"https://github.com/somerandomdude/Frank.git",
@"bc8e6de6d672da1c78e8267d59f62b710a623a7c", 965)]
[TestCase(@"https://github.com/cartalyst/sentry.git",
@"fcf802d6ef42cb6db08df731c55bb3a687f3ec0e", 949)]
[TestCase(@"https://github.com/sonata-project/SonataAdminBundle.git",
@"020e4ff2ba694e15f8970a9878bd507e15044a06", 947)]
[TestCase(@"https://github.com/roots/bedrock.git",
@"623c5dfb0f9af60c7f0f3adcfc28a9cc81e5fd29", 942)]
[TestCase(@"https://github.com/markjaquith/WordPress-Skeleton.git",
@"1be2fe16e43ec4aeaab07d92597a01519ecbd30d", 930)]
[TestCase(@"https://github.com/kolber/stacey.git",
@"3fe746e2522eb08e98976c1ca946fd2d3e496baa", 922)]
[TestCase(@"https://github.com/jquery/testswarm.git",
@"bd1877cd4e67fd9c40315b88c2c1d117c9cfbc5c", 920)]
[TestCase(@"https://github.com/jpfuentes2/php-activerecord.git",
@"6ca994b9f8cf984cff14033ad96264d17916af56", 908)]
[TestCase(@"https://github.com/swiftmailer/swiftmailer.git",
@"d5d580ca7ced89955ce7200f41fb0f97b8f74c60", 898)]
[TestCase(@"https://github.com/ircmaxell/password_compat.git",
@"c91b1168bc53c26f56fc65f16958b5be45ca5dc9", 898)]
[TestCase(@"https://github.com/YOURLS/YOURLS.git",
@"c55212cd14a0d34c1e3030aa3ffe59d592b77dc2", 897)]
[TestCase(@"https://github.com/UnionOfRAD/lithium.git",
@"791c2ce345b63cd47f067cdebccb6497a35de014", 887)]
[TestCase(@"https://github.com/vanillaforums/Garden.git",
@"a72014abebf891b647e7399d27ddaa03eba1095e", 879)]
[TestCase(@"https://github.com/moodle/moodle.git",
@"069fe267b611d0025d232bf66706a44ffccc737c", 878)]
[TestCase(@"https://github.com/murtaugh/HTML5-Reset-WordPress-Theme.git",
@"374166a449a39da3eb70e1079fec9be76d9144d7", 874)]
[TestCase(@"https://github.com/SSilence/selfoss.git",
@"32f11b973fd5632438d291568359b28949963e4c", 873)]
[TestCase(@"https://github.com/Anahkiasen/rocketeer.git",
@"02e2eace2765d88754731d1c672bb14b0d2cf6ca", 868)]
[TestCase(@"https://github.com/kriswallsmith/Buzz.git",
@"a0f207ac4939978b604be9bec5d5b19baecd8165", 862)]
[TestCase(@"https://github.com/interconnectit/Search-Replace-DB.git",
@"12c6732502958a0c57125f6b30741e6e0f05655c", 852)]
[TestCase(@"https://github.com/kakserpom/phpdaemon.git",
@"3bf6abc148c4764d7e2bdb2a80d9bcfbb00ca995", 851)]
[TestCase(@"https://github.com/mongodb/mongo-php-driver.git",
@"87c2cfefbcbfb91d96552d704631af2177222c42", 841)]
[TestCase(@"https://github.com/splitbrain/dokuwiki.git",
@"36d893219337b45ab7952d10534ff4c212c59ca8", 835)]
[TestCase(@"https://github.com/marcoarment/secondcrack.git",
@"664b40ae9934359703e15934fd6b4b14c6098601", 830)]
[TestCase(@"https://github.com/markjaquith/WP-Stack.git",
@"1a5714be857ffcd494ea56d9ff3619500815839e", 829)]
[TestCase(@"https://github.com/phpmyadmin/phpmyadmin.git",
@"b77cc7f1ce38099290e7fddf8badcf85f2a56f69", 813)]
[TestCase(@"https://github.com/KnpLabs/snappy.git",
@"9d7bd2e806e68acf6216c8b7eca7ddd774d0aebf", 812)]
[TestCase(@"https://github.com/FriendsOfSymfony/FOSRestBundle.git",
@"292891740390ec5bdddc95340dec3a2b3c687e0d", 805)]
[TestCase(@"https://github.com/drewsymo/Foundation.git",
@"2ef5908f6bfaa7b3c1f944a7f89a457f8a792403", 799)]
[TestCase(@"https://github.com/nette/nette.git",
@"9ff44c392a248d1bdd17dcd94f7e441a73e601d6", 799)]
[TestCase(@"https://github.com/Codeception/Codeception.git",
@"a02f50ee09f067c2c0c08d4cadb3946ad8dc2d9d", 793)]
[TestCase(@"https://github.com/mikelbring/tinyissue.git",
@"3d514bbd017832e3896d5503ad113b081a029a00", 790)]
[TestCase(@"https://github.com/simplepie/simplepie.git",
@"5f00e77b5feb96605cbcea4dcfb555e87c2fed24", 789)]
[TestCase(@"https://github.com/themattharris/tmhOAuth.git",
@"47dcee2ac74f8c032d2a1afb836e65108bf582b7", 785)]
[TestCase(@"https://github.com/anandkunal/ToroPHP.git",
@"09a1e01c6baf27d9fd70759f7739699fdf85218b", 784)]
[TestCase(@"https://github.com/c9s/phpbrew.git",
@"496c0400fd247ce2fd01d4f5ce705b9ceb5222bb", 774)]
[TestCase(@"https://github.com/fabpot/Pimple.git",
@"a9e94d9fd6cb9e8f097551a25ffec73ff2480a24", 770)]
[TestCase(@"https://github.com/bastianallgeier/kirbycms.git",
@"2281b002fa4b8aa2c943a063bc8e47b9bb4df630", 769)]
[TestCase(@"https://github.com/masterexploder/PHPThumb.git",
@"69fe4dbef9c70915ee16652339395deadb1509cb", 762)]
[TestCase(@"https://github.com/forkcms/forkcms.git",
@"4f3ccdabf6e76a6ebbd8a85306588a47933da854", 751)]
[TestCase(@"https://github.com/amazonwebservices/aws-sdk-for-php.git",
@"aab09f6dac35e5e9a263fb7311bb4e71de95b0ba", 750)]
[TestCase(@"https://github.com/propelorm/Propel.git",
@"e914de6d6372f4e09c82a19a59dd11ca9d16d503", 746)]
[TestCase(@"https://github.com/Codiad/Codiad.git",
@"0faabeb14aabb1737a4671e9b71c0447ed20fc5b", 744)]
[TestCase(@"https://github.com/Herzult/SimplePHPEasyPlus.git",
@"e9b2d592a16a0bb72ac1f2d6483f2993427a4475", 743)]
[TestCase(@"https://github.com/Block8/PHPCI.git",
@"102354190773f1b36bd7c0c762efd8ec7938f888", 740)]
[TestCase(@"https://github.com/cakephp/debug_kit.git",
@"bbfb1d1993b195b14b2bf7b4c3f37e732ad76195", 738)]
[TestCase(@"https://github.com/VerbalExpressions/PHPVerbalExpressions.git",
@"f9d4e0b38605704b0e8e343375adca656b28c222", 737)]
[TestCase(@"https://github.com/esotalk/esoTalk.git",
@"22c2d7b31aabafc6be325ab6116d4da7a0279d40", 733)]
[TestCase(@"https://github.com/ccampbell/chromephp.git",
@"c3c297615d48ae5b2a86a82311152d1ed095fcef", 730)]
[TestCase(@"https://github.com/barryvdh/laravel-ide-helper.git",
@"16f77638f159c75a93da97dd48904707618483a3", 730)]
[TestCase(@"https://github.com/lucb1e/cookielesscookies.git",
@"a23a2c8163d91063f08ca38e530b284839933d06", 729)]
[TestCase(@"https://github.com/fuel/core.git",
@"2fdd79e0d902d78c081e472b086f551336b4663e", 716)]
[TestCase(@"https://github.com/thephpleague/oauth2-server.git",
@"ba5f2840fb46e8b23ae437890bfaffe74392be8e", 715)]
[TestCase(@"https://github.com/erusev/parsedown.git",
@"c10bde01746867e2afbc715a6149f4e682f0263b", 714)]
[TestCase(@"https://github.com/maximebf/php-debugbar.git",
@"f6da2ec2239a764032c197ebfe85c23faf694748", 710)]
[TestCase(@"https://github.com/raveren/kint.git",
@"590e3fcc3fd4234a8d5e844ce783c82464401d7f", 709)]
[TestCase(@"https://github.com/dmolsen/Detector.git",
@"f697794be555b4a2ce070a0b1265a1eb5f87fb58", 707)]
[TestCase(@"https://github.com/facebook/xhp.git",
@"1e1825cfdcd10e42c563b48e8f25818ee831ed9d", 705)]
[TestCase(@"https://github.com/csscomb/csscomb.git",
@"f065c6dc298a612b4f9492c382b6eb3f1ec1f095", 693)]
[TestCase(@"https://github.com/kohana/core.git",
@"06c8242ce73abce2a633944cb7b259f9ba861ef1", 690)]
[TestCase(@"https://github.com/j4mie/paris.git",
@"dd1a87544127874dce367f0252dcc81246dfc83b", 689)]
[TestCase(@"https://github.com/brianhaveri/Underscore.php.git",
@"4c5c191bcf0bcb88a0a9bee9d47332ba44900a92", 687)]
[TestCase(@"https://github.com/croogo/croogo.git",
@"8b99a1d2128e6b45b969beae1d3391c8bddcbd23", 685)]
[TestCase(@"https://github.com/tommcfarlin/WordPress-Widget-Boilerplate.git",
@"d5ece3b884d376e4dee820ecc2aa33e928e6d5ac", 680)]
[TestCase(@"https://github.com/ushahidi/Ushahidi_Web.git",
@"712909759ca1a2e97c912b360bf2a67ac856c25b", 667)]
[TestCase(@"https://github.com/squizlabs/PHP_CodeSniffer.git",
@"339b91cd73c9930c792d54092dc6e1cd376b7a8d", 666)]
[TestCase(@"https://github.com/ruflin/Elastica.git",
@"be1729b04954da58bc1f5c97eb3bcfac12e61249", 653)]
[TestCase(@"https://github.com/bshaffer/oauth2-server-php.git",
@"153fdf3123cdcf971fc2d88222765528813ae085", 650)]
[TestCase(@"https://github.com/Intervention/image.git",
@"517d9ba46735237b279ed97bafb79fc68f6ce350", 647)]
[TestCase(@"https://github.com/vrana/adminer.git",
@"bc466f7f85d248a939ecf5cfce7cc18af3dede7f", 645)]
[TestCase(@"https://github.com/toddmotto/html5blank.git",
@"d55c379dcf0df84bafbdc1634ed8a87be855344c", 643)]
[TestCase(@"https://github.com/joomla/joomla-platform.git",
@"10ea69dece20f9ef1fe57f8584f2cd8e7c17ac7f", 641)]
[TestCase(@"https://github.com/frapi/frapi.git",
@"ef50192b6cf336ef2c4c0fc3ad122194e3d0ecde", 638)]
[TestCase(@"https://github.com/PrestaShop/PrestaShop.git",
@"aadf18e60f7424376b586c2a8880c74e7736b308", 626)]
[TestCase(@"https://github.com/symfony-cmf/symfony-cmf.git",
@"0c9f93cbb2d6e1d94395db57f5cabe17f5631550", 622)]
[TestCase(@"https://github.com/twittem/wp-bootstrap-navwalker.git",
@"1e869edb03b04aff7792cf3327e94bb3dafac95b", 622)]
[TestCase(@"https://github.com/openid/php-openid.git",
@"cb53da46b73baff46ae325eb799d91703acc3780", 614)]
[TestCase(@"https://github.com/apigen/apigen.git",
@"396a550d0261c19bf44624f1342ab4a0d4e057ae", 613)]
[TestCase(@"https://github.com/Datawalke/Coordino.git",
@"d3d0b068b3d9be6864c72a021ba4cb77d770d916", 610)]
[TestCase(@"https://github.com/mhoofman/wordpress-heroku.git",
@"dca3d327dd9fa03cbb9ce05a01c790c92357b7c2", 608)]
[TestCase(@"https://github.com/drush-ops/drush.git",
@"407eaf355a04c96e6a8fcc1b94ac92c22022298e", 606)]
[TestCase(@"https://github.com/devinsays/options-framework-plugin.git",
@"e413c99778bf207ae3d6ac04a12ae4506a500637", 605)]
[TestCase(@"https://github.com/elliotcondon/acf.git",
@"772259933c0751e4325d16acbcbce415450bc054", 604)]
[TestCase(@"https://github.com/FrozenNode/Laravel-Administrator.git",
@"da269970a0b1153191cbaa76dbadd0bda6757eb1", 603)]
[TestCase(@"https://github.com/facebook/php-webdriver.git",
@"390c6008ba7b39c2180e2a5cc55c790315696a1c", 594)]
[TestCase(@"https://github.com/catfan/Medoo.git",
@"f9f6073cf52c68d5d5d4d1b9434f24ce3e42531c", 592)]
[TestCase(@"https://github.com/phpbb/phpbb.git",
@"b487da7c053a129c8e06056e4659ba7928f63c40", 590)]
[TestCase(@"https://github.com/zencoder/html5-boilerplate-for-wordpress.git",
@"7fb69b1759ea133128992533999c1e7e2dfcf1ed", 588)]
[TestCase(@"https://github.com/thomasgriffin/TGM-Plugin-Activation.git",
@"1e98e425f4a3bc43bd0fa05fe74a4268aa624f33", 587)]
[TestCase(@"https://github.com/MPOS/php-mpos.git",
@"6324471bdf670a68dbff614319003519cbf339f4", 586)]
[TestCase(@"https://github.com/manifestinteractive/easyapns.git",
@"154662a40f95e43025dce5b3cb405c9830060fd3", 586)]
[TestCase(@"https://github.com/mikecao/flight.git",
@"b9b2d0fa2d75e6b2f606fbd0d9a8059a0f741578", 585)]
[TestCase(@"https://github.com/dodgepudding/wechat-php-sdk.git",
@"28105dcdf2a3cd8a4a482e61896ea614b9b0b657", 583)]
[TestCase(@"https://github.com/facebook/libphutil.git",
@"3ca028dec2e77ec8780c644f453b5700b606ab60", 579)]
[TestCase(@"https://github.com/concrete5/concrete5.git",
@"98272c83c6ae20dc2a52ca677332bfe6a2a6581e", 576)]
[TestCase(@"https://github.com/jamierumbelow/codeigniter-base-model.git",
@"2d03af0bd87f6a191f09a63612da9b035733f077", 576)]
[TestCase(@"https://github.com/Trimidea/inews.git",
@"9b2072466c404007a37adfa42f3dde77b5ec4e51", 572)]
[TestCase(@"https://github.com/sofadesign/limonade.git",
@"a21f45f5b3c208e95162ef8246f4552c2963a70a", 572)]
[TestCase(@"https://github.com/daylightstudio/FUEL-CMS.git",
@"8d6ed8fd514a64a36af8173abcf54d632855012c", 571)]
[TestCase(@"https://github.com/tpyo/amazon-s3-php-class.git",
@"7cce95a8aea426c36d1290b3eeb84a46dbecf6e5", 566)]
[TestCase(@"https://github.com/modxcms/revolution.git",
@"817c7bf3148c253eb2c5540421fc118fc2608db2", 561)]
[TestCase(@"https://github.com/Elgg/Elgg.git",
@"f84677b41577195f44e9e34aa91fd407792fd2fb", 560)]
[TestCase(@"https://github.com/laravelbook/ardent.git",
@"0a0238b8040abc1c71401ce27a8edf2619fa5bed", 557)]
[TestCase(@"https://github.com/J7mbo/twitter-api-php.git",
@"ab76f1c1e6bf83f0a257216cbaf9932b7cc19a3f", 557)]
[TestCase(@"https://github.com/jmathai/twitter-async.git",
@"a361018261b887a5f8fb823a05e0e0e688a5c040", 556)]
[TestCase(@"https://github.com/jmathai/epiphany.git",
@"0418fa96add6bbc3c1e3b2dd313a041be72f9717", 555)]
[TestCase(@"https://github.com/leemason/NHP-Theme-Options-Framework.git",
@"ed709af8fc4e96dc2c638fad949b00594cca8427", 553)]
[TestCase(@"https://github.com/NeonHorizon/berryio.git",
@"d0f4d61a9f6123ac2d6c279afc1fec67accb9a75", 549)]
[TestCase(@"https://github.com/atoum/atoum.git",
@"ae761218e03e4df060153034924270660d4da768", 549)]
[TestCase(@"https://github.com/WP-API/WP-API.git",
@"e8bb59da12aa0df512b9138e2b741abbc9b9c1b0", 543)]
[TestCase(@"https://github.com/jarednova/timber.git",
@"4578c80160bbdbf43683fb610711b045c9f81d5f", 542)]
[TestCase(@"https://github.com/peej/tonic.git",
@"7589f49abc0f6c2a482978e0d7108bc7ba273543", 536)]
[TestCase(@"https://github.com/meenie/munee.git",
@"7f25338c978a284a26eb503e91430743eb760c00", 536)]
[TestCase(@"https://github.com/wallabag/wallabag.git",
@"4a74d9857cdb6116ce24df01b45176b92ad592c0", 534)]
[TestCase(@"https://github.com/BenTheDesigner/Dropbox.git",
@"94de100581fc103920786d38d4aa5433802d3842", 532)]
[TestCase(@"https://github.com/hwi/HWIOAuthBundle.git",
@"cb90e60c079bbf3aed8044cd71d5e03e32d60133", 531)]
[TestCase(@"https://github.com/danielstjules/Stringy.git",
@"8d961e25d09f946b463c0581e927a963f3578647", 529)]
[TestCase(@"https://github.com/Xeoncross/micromvc.git",
@"04779326fa0d5bbd672996a7bcac80150c9cd82f", 524)]
[TestCase(@"https://github.com/google/google-api-php-client.git",
@"85e361f074687b2cd374872d10e7b3309ab8d108", 521)]
[TestCase(@"https://github.com/Behat/Mink.git",
@"055da154b9fcb0bb238332adda3c4b38210c85d3", 520)]
[TestCase(@"https://github.com/scribu/wp-posts-to-posts.git",
@"4c524f337a8a4a5c407794d548e9171a46145e09", 520)]
[TestCase(@"https://github.com/barryvdh/laravel-debugbar.git",
@"9c0c6de939141f43efdf9c3beed22db50e2a4248", 510)]
[TestCase(@"https://github.com/liu21st/thinkphp.git",
@"6c9066f8a0f601e86fb80072ded623728f024ed4", 509)]
[TestCase(@"https://github.com/laravel/cashier.git",
@"f0de421064bdd633f951824ad0494baa6edb3998", 509)]
[TestCase(@"https://github.com/Zizaco/confide.git",
@"93138bc190ed29ad6ca0f750984c9f7e12aa0d54", 505)]
[TestCase(@"https://github.com/jeromeschneider/Baikal.git",
@"6c77c02e21f120379edb5ace593f0cc67c04fe92", 503)]
[TestCase(@"https://github.com/nelmio/NelmioApiDocBundle.git",
@"fd126c1a0101a7703489b2fd65c91526d2b75774", 499)]
[TestCase(@"https://github.com/reeze/tipi.git",
@"a515cdfa4896cf1471b63d208cd786af07972663", 489)]
[TestCase(@"https://github.com/devinsays/options-framework-theme.git",
@"474cf76be30938e50b54b8c3d326ae415e59c193", 486)]
[TestCase(@"https://github.com/robmorgan/phinx.git",
@"048393f59708be2f8d5faff4c57ed6d9ba3017d5", 484)]
[TestCase(@"https://github.com/niklasvh/php.js.git",
@"920b7e58ef6a97127d998e49889b1c0497364586", 483)]
[TestCase(@"https://github.com/sebastianbergmann/phploc.git",
@"eda0bfe29c804a317e8b013899ebc15b991d4e1a", 482)]
[TestCase(@"https://github.com/eyecatchup/SEOstats.git",
@"d6f8dc189f12801bdc2b5fc9aa58a4f342c76681", 481)]
[TestCase(@"https://github.com/stof/StofDoctrineExtensionsBundle.git",
@"f1c7993863f83f22f187f11d2a8eb462b836701e", 477)]
[TestCase(@"https://github.com/typecho/typecho.git",
@"310ee3e2dca3c100d3c102088a30326157a2304e", 477)]
[TestCase(@"https://github.com/sebastianbergmann/phpcpd.git",
@"a9462153f2dd90466a010179901d31fbff598365", 476)]
[TestCase(@"https://github.com/pda/pheanstalk.git",
@"56c44c947cf44a85c8d639209361da5f67b6fbff", 471)]
[TestCase(@"https://github.com/ErikDubbelboer/phpRedisAdmin.git",
@"f9b7820c76ed507267d853f11168425f340f9f4a", 467)]
[TestCase(@"https://github.com/lyrixx/Silex-Kitchen-Edition.git",
@"e82700b368833d3303303ddca68b2a663b349096", 467)]
[TestCase(@"https://github.com/fabpot/Sismo.git",
@"9732d3a1a370ab093e9e126f7ea0366ce64c7389", 462)]
[TestCase(@"https://github.com/composer/satis.git",
@"eed9a2e763d89be19b57f55486b62f12d97e6aab", 459)]
[TestCase(@"https://github.com/phpspec/phpspec.git",
@"5f3b795d37488439fc08ca6c7b33ec8fb28f643d", 458)]
[TestCase(@"https://github.com/brunogaspar/laravel4-starter-kit.git",
@"d27e3f66c487252c11b0e6f8962646df970b4060", 457)]
[TestCase(@"https://github.com/Zizaco/entrust.git",
@"b580e422df43b5abf9f46069421123497487604b", 457)]
[TestCase(@"https://github.com/doctrine/mongodb-odm.git",
@"dedb73ab4025989575fbfc784a4bc66aee737bcc", 455)]
[TestCase(@"https://github.com/ZF-Commons/ZfcUser.git",
@"8774d3d60d93b5e1c0d537ce6d5633c6f75960d1", 454)]
[TestCase(@"https://github.com/rilwis/meta-box.git",
@"f5f7209ec4b8050cf407eab8444ba673e30d625b", 454)]
[TestCase(@"https://github.com/doctrine/dbal.git",
@"32817aac490eeba4c39bd7670ec2f6182e496fc5", 449)]
[TestCase(@"https://github.com/syamilmj/Options-Framework.git",
@"c5ac7a0930b3e20f5f55ba4c38f1dd8a9eab1efe", 448)]
[TestCase(@"https://github.com/videlalvaro/php-amqplib.git",
@"1ca6d49bec6b8d2a011e94726c63d6bfad04856b", 446)]
[TestCase(@"https://github.com/webtechnick/CakePHP-Facebook-Plugin.git",
@"d1b4ae95bb610ab60b51f0e64e0227d42ae84b69", 446)]
[TestCase(@"https://github.com/ircmaxell/PHPPHP.git",
@"6d5d62a04fda07d7798587a7db424feae4663950", 445)]
[TestCase(@"https://github.com/fabpot/Sami.git",
@"a9578e8b51c70929b3687f57028699d403aafa84", 445)]
[TestCase(@"https://github.com/xdebug/xdebug.git",
@"684d90385ca8c6362eff3d1eb9a3539cc989ac3f", 443)]
[TestCase(@"https://github.com/graulund/tweetnest.git",
@"82a8d170592cde7fc5085e256c623351e3fe951d", 443)]
[TestCase(@"https://github.com/PHPOffice/PHPWord.git",
@"c6fc1d4e892b217d781bbc9ad194d9d0d0b05d84", 442)]
[TestCase(@"https://github.com/vrana/notorm.git",
@"d7f320a3d8da0dbcb17187ad4b9c91a396f5d0c6", 439)]
[TestCase(@"https://github.com/jkudish/WordPress-GitHub-Plugin-Updater.git",
@"6d0c856659de1f2f5083dc79a53018cdb973f3cd", 439)]
[TestCase(@"https://github.com/duccio/ApnsPHP.git",
@"a65a0aaf913389fcec7321f31eff4b6492c8291c", 437)]
[TestCase(@"https://github.com/philsturgeon/codeigniter-restclient.git",
@"296de79b3249101bc0af6502f358da4b55a262d5", 436)]
[TestCase(@"https://github.com/nelmio/alice.git",
@"6178f891f5dac28d28bbdb2721a0611add8d3177", 435)]
[TestCase(@"https://github.com/symphonycms/symphony-2.git",
@"15eb9fb550f203daa95c1a4d4e4597fe2da9ca73", 434)]
[TestCase(@"https://github.com/codeguy/Upload.git",
@"508ba2ba50119b6ab99a551806ef6b7d43c16b5c", 434)]
[TestCase(@"https://github.com/technosophos/querypath.git",
@"5597edb17eba8b974f2d8a5e65e4cb8fa0fc95f6", 432)]
[TestCase(@"https://github.com/stripe/stripe-php.git",
@"66d8b3139f7c11761d3ff33807210f7eedb78fbe", 430)]
[TestCase(@"https://github.com/WhatCD/Gazelle.git",
@"f544294c3a26706621a4551d6f24a32104b0b97b", 424)]
[TestCase(@"https://github.com/contao/core.git",
@"e61490827d472e75356a3794a36b2da3854d96c7", 422)]
[TestCase(@"https://github.com/yandod/candycane.git",
@"a115201174400922b5ba925e15800984dd90f95c", 421)]
[TestCase(@"https://github.com/nategood/httpful.git",
@"9d66cd3c37f2945eda5f3ee57ba8bad0b617eb3d", 421)]
[TestCase(@"https://github.com/Sybio/ImageWorkshop.git",
@"2b58bcde5205956e4b439cfaa86fb88113442d72", 418)]
[TestCase(@"https://github.com/FriendsOfSymfony/FOSJsRoutingBundle.git",
@"36629f5976f9f588093bf0bfb5230502fdb0eacf", 417)]
[TestCase(@"https://github.com/brianlmoon/GearmanManager.git",
@"da2e6ea736c96482ab79631b050d3a2a8a5a96df", 415)]
[TestCase(@"https://github.com/phingofficial/phing.git",
@"2692a9c2bf3744a1e0cc2b7ccd90f305e048df14", 413)]
[TestCase(@"https://github.com/spotweb/spotweb.git",
@"8d1e002f5358155854f2d2b535072b46a58f008e", 412)]
[TestCase(@"https://github.com/backdrop/backdrop.git",
@"2a826129975d67e913094f66049cb12387483d37", 411)]
[TestCase(@"https://github.com/lisachenko/go-aop-php.git",
@"2ed1ec129fb21eae2e830461fa1da629e9dbf658", 408)]
[TestCase(@"https://github.com/peteboere/css-crush.git",
@"d2192769bc27529b955a72c8e31698d2d907ad08", 408)]
[TestCase(@"https://github.com/codeguy/Slim-Extras.git",
@"59300d25d62f2f299b4065ed99eb71ca91f8a434", 408)]
[TestCase(@"https://github.com/zynga/zperfmon.git",
@"ee78dd143dd0555bef094b40877cc627309cb060", 408)]
[TestCase(@"https://github.com/khoaofgod/phpfastcache.git",
@"b74ef587cddd432fac57f05a4375ea41eac42e21", 408)]
[TestCase(@"https://github.com/plainmade/unmark.git",
@"bc5a242f243d6f211344868a937a8ba3af709591", 406)]
[TestCase(@"https://github.com/fennb/phirehose.git",
@"fe8d322690c3d106b2b2fc73c7df4a9581b16be9", 403)]
[TestCase(@"https://github.com/Pawka/phrozn.git",
@"a9be165f0c1210d6badba833653706e4ce95aa7f", 402)]
[TestCase(@"https://github.com/sjlu/CodeIgniter-Bootstrap.git",
@"49ad9c17a21577ed9883c216b9636d2e65f618c7", 401)]
[TestCase(@"https://github.com/yupe/yupe.git",
@"4082c3a0c7a8ced413b84147476b59c24812fbd9", 399)]
[TestCase(@"https://github.com/Anahkiasen/former.git",
@"fce6790e10bbd0acf3f5a5224d56477ecd44ba7b", 397)]
[TestCase(@"https://github.com/mageplus/mageplus.git",
@"2e06c9d5752e9397cb045c80a22f74d61fede7e4", 396)]
[TestCase(@"https://github.com/rgrove/jsmin-php.git",
@"948d87c203010b0544ecc50cf31ad743d7e02a57", 392)]
[TestCase(@"https://github.com/walu/phpbook.git",
@"b0b3a2f0e5d8dcc8c4991586e794e3b36ef6e4f1", 392)]
[TestCase(@"https://github.com/patrikf/glip.git",
@"50edbd9c77eda1aa91fbb971403492b635cf9482", 391)]
[TestCase(@"https://github.com/genemu/GenemuFormBundle.git",
@"9fecbe7a12fba1761228909e843301c4d1a11e7c", 391)]
[TestCase(@"https://github.com/phpseclib/phpseclib.git",
@"1a7e3746d540fa32df0f414852e7b0597de47291", 389)]
[TestCase(@"https://github.com/twilio/twilio-php.git",
@"389e07ee41eabc422ea88b805006bccac7de9eb3", 389)]
[TestCase(@"https://github.com/jenssegers/Laravel-MongoDB.git",
@"2ae7980f86312f050c2ab626f48fa9015fbe26a3", 389)]
[TestCase(@"https://github.com/farinspace/wpalchemy.git",
@"060f0b8d1c28a8808e4b323cec5450253663200d", 388)]
[TestCase(@"https://github.com/sebastianbergmann/php-code-coverage.git",
@"0f87633dd5e3d3336606903e5d8b65a61771e989", 384)]
[TestCase(@"https://github.com/scrutinizer-ci/php-analyzer.git",
@"6e023945d2d742d9409aa2a81c9a3442a63c8e5b", 384)]
[TestCase(@"https://github.com/KnpLabs/KnpMenuBundle.git",
@"e5700ed8cbd5c402d24d6dda118aa23400937288", 383)]
[TestCase(@"https://github.com/tylerhall/simple-php-framework.git",
@"599c0d521bc41df3c9eb2cc75946f608cd5b7055", 382)]
[TestCase(@"https://github.com/paulrobertlloyd/barebones.git",
@"7a1afdf04fc23b13a0dd2a5e991dbbce0feddef6", 382)]
[TestCase(@"https://github.com/benkeen/generatedata.git",
@"5a37d96c793bfcd842c04fef24eac0709c54da61", 381)]
[TestCase(@"https://github.com/silverstripe/silverstripe-framework.git",
@"bd39dc2d848dbdc5e49ed97e46b9f1d154712abd", 378)]
[TestCase(@"https://github.com/Retina-Images/Retina-Images.git",
@"944130a2888bc35cbb6b6266077127401622fd11", 378)]
[TestCase(@"https://github.com/TankAuth/Tank-Auth.git",
@"0261ba58869a7d4c133bc4aa2e9ff23dc23227da", 376)]
[TestCase(@"https://github.com/kerns/dummy.git",
@"ca613a01f1c8225d51d0239498ec08ada12edff8", 375)]
[TestCase(@"https://github.com/Openovate/eden.git",
@"3eb6a7aba63d6a5671f5f1d1693debe2aed269c5", 374)]
[TestCase(@"https://github.com/psecio/iniscan.git",
@"a3bf8b0cfb521143a292fc841cbb24eb64e10dd2", 372)]
[TestCase(@"https://github.com/bobthecow/Ruler.git",
@"68096681f45fa61b5bca67d4ecb28447cedc5a63", 370)]
[TestCase(@"https://github.com/shaneharter/PHP-Daemon.git",
@"e6398dcd6a09190bae54fb8e69297400cddbe548", 369)]
[TestCase(@"https://github.com/ryancramerdesign/ProcessWire.git",
@"6cba9c7c34069325ee8bfc87e34e7f1b5005a18e", 368)]
[TestCase(@"https://github.com/tlhunter/neoinvoice.git",
@"e923f12b0ac6b565ffaacebdab67cc996155d978", 366)]
[TestCase(@"https://github.com/philsturgeon/codeigniter-oauth2.git",
@"d2d3b0e73074d7c8b8e7a0ab02f75dfcf1937ed8", 364)]
[TestCase(@"https://github.com/allynbauer/statuspanic.git",
@"2fb6d082ca971598c5e8632e58804cafac03b891", 363)]
[TestCase(@"https://github.com/beberlei/DoctrineExtensions.git",
@"5e4ec9c3ec3434151e1c73144b4ab87ae30aefbc", 362)]
[TestCase(@"https://github.com/twilio/OpenVBX.git",
@"9398006989c2e685a11453cdc2bc583a60fa86f5", 358)]
[TestCase(@"https://github.com/pfsense/pfsense.git",
@"9265d9911500906da0311206eea2975c236922ee", 357)]
[TestCase(@"https://github.com/aheinze/cockpit.git",
@"c48894547a741d19ec32dae08685ac1cf43da965", 357)]
[TestCase(@"https://github.com/alexbilbie/codeigniter-mongodb-library.git",
@"1bb4939aa10ee1fdef0ea53e82b6905b548983ad", 357)]
[TestCase(@"https://github.com/ornicar/php-github-api.git",
@"60bdbe492afaf4f4dc1ecd3739351c3daed37ce6", 355)]
[TestCase(@"https://github.com/fabpot/Twig-extensions.git",
@"502303198afc1ec0bcc061c6f3a0926f7eb685e3", 355)]
[TestCase(@"https://github.com/laravel/envoy.git",
@"d9ffc529de7003a5f5dc2e69ab6676937831c1a0", 354)]
[TestCase(@"https://github.com/crowdfavorite/wp-post-formats.git",
@"2ff0fb194f711c4efa6d232c35cc3a19c8e597c0", 354)]
[TestCase(@"https://github.com/jaysalvat/image2css.git",
@"ba5b75cb707950e5d928d7f58b1aaf6386686700", 354)]
[TestCase(@"https://github.com/giggsey/libphonenumber-for-php.git",
@"5c03131deb2494f7ad55832af1d2d378434127f7", 354)]
[TestCase(@"https://github.com/symfony2admingenerator/AdmingeneratorGeneratorBundle.git",
@"78151b707a277eeb6f0db24664233bf3ba8adcb5", 353)]
[TestCase(@"https://github.com/kherge/php-box.git",
@"c75ebd1ced2ea411c262557a76d66a842d78b648", 352)]
[TestCase(@"https://github.com/JeffreyWay/Laravel-Guard.git",
@"396a6d656ca072bc29b637601c79896c9bfaceeb", 352)]
[TestCase(@"https://github.com/silexphp/Silex-Skeleton.git",
@"5f1e7133bca28931a1aa215eab51d855a5630390", 350)]
[TestCase(@"https://github.com/pods-framework/pods.git",
@"cb86c1f12d03da2857b772ec078c26c88083c5ac", 349)]
[TestCase(@"https://github.com/propelorm/Propel2.git",
@"eeda66022bdb88c9e67d374569aa71707fe33ed3", 349)]
[TestCase(@"https://github.com/mattpass/ICEcoder.git",
@"1385d65a2bc455951740e1d975affa7722eb56e0", 347)]
[TestCase(@"https://github.com/Mashape/unirest-php.git",
@"461060202cf928859b1d8a6be2da5bf4341f77e0", 347)]
[TestCase(@"https://github.com/tschoffelen/PHP-PKPass.git",
@"4d35f9890d33659cac278c8cb7a2630d79d236ec", 347)]
[TestCase(@"https://github.com/opensky/Symfony2-coding-standard.git",
@"2e8158eb1aae5ef227d90c1656dd6325746ceef8", 347)]
[TestCase(@"https://github.com/clevertech/YiiBoilerplate.git",
@"8f029d033df20b76403f69ffbb88aec762851a95", 346)]
[TestCase(@"https://github.com/Lusitanian/PHPoAuthLib.git",
@"faeb011212d12d45f161a16a77ebe5f69db1a8c2", 345)]
[TestCase(@"https://github.com/elliothaughin/codeigniter-facebook.git",
@"8427b3dac8faa2ee4a4bf455bbe2e0c5ff665014", 345)]
[TestCase(@"https://github.com/jadell/neo4jphp.git",
@"6ca33b202b403c4f564f6a2f3bacc9482597b203", 345)]
[TestCase(@"https://github.com/katzgrau/KLogger.git",
@"46cdd92a9b4a8443120cc955bf831450cb274813", 343)]
[TestCase(@"https://github.com/QafooLabs/php-refactoring-browser.git",
@"c951cbf2d957b5ced0546691710c09e4fadd3723", 343)]
[TestCase(@"https://github.com/mtdowling/cron-expression.git",
@"bbd1b74c2de5b574d6d12961d41d8830bc71ce01", 343)]
[TestCase(@"https://github.com/KnpLabs/KnpPaginatorBundle.git",
@"7ea961c9ef60343a359f513c9fec7fd3bb65ddcb", 343)]
[TestCase(@"https://github.com/codin/roar.git",
@"7b7947418258ca0791839be23603e13e5dbe4e10", 343)]
[TestCase(@"https://github.com/composer/packagist.git",
@"e9503b35b50023ca1cd39e25b969756274d6beef", 342)]
[TestCase(@"https://github.com/mantisbt/mantisbt.git",
@"3c23897730be8b0bbba19301ea7621f58351a014", 341)]
[TestCase(@"https://github.com/willfarrell/alfred-workflows.git",
@"63365ed296d75e8ff362aeda85a881341648129a", 341)]
[TestCase(@"https://github.com/PANmedia/raptor-editor.git",
@"00229527c25a866b5674350961fe6db23cb22628", 340)]
[TestCase(@"https://github.com/basdenooijer/solarium.git",
@"f602c2020d1b57e7a3aa0c75088222ce31438aba", 338)]
[TestCase(@"https://github.com/fruux/sabre-dav.git",
@"4dcaec9a7f7c9e33d6b558334d56ed34209b4b1e", 337)]
[TestCase(@"https://github.com/sculpin/sculpin.git",
@"90e9981c94607d6e79d1896e695d2ef3c9369ee4", 337)]
[TestCase(@"https://github.com/Respect/Rest.git",
@"28292ebd12a28fb195ee89a5af43cb87722e8b90", 335)]
[TestCase(@"https://github.com/gallery/gallery3.git",
@"1637723a995d391f16768a7594854c0d4dfadc6a", 333)]
[TestCase(@"https://github.com/pressflow/7.git",
@"a29424bc599af1c9a45d15c7970fdd935631a830", 333)]
[TestCase(@"https://github.com/itsgoingd/clockwork.git",
@"4824b3bc1c17fcccf5e9df196a2ae25f5d111e16", 333)]
[TestCase(@"https://github.com/slywalker/TwitterBootstrap.git",
@"810f252ad177d5c66b6c12c87be50a0a5d1d1c93", 332)]
[TestCase(@"https://github.com/philsturgeon/codeigniter-template.git",
@"8b08057227bda766791ea163ccf6061708962f64", 332)]
[TestCase(@"https://github.com/philsturgeon/codeigniter-curl.git",
@"310c12221b9fac9b6884955cccec06fb6b363959", 329)]
[TestCase(@"https://github.com/easydigitaldownloads/Easy-Digital-Downloads.git",
@"49545ae4ad0c15638202fc92a7412c3ec664315b", 328)]
[TestCase(@"https://github.com/fex-team/fis.git",
@"aec156783570bce1821c76b5efabcb4015d74530", 328)]
[TestCase(@"https://github.com/Flar49/passionate-programmer-translation.git",
@"85c15a74e8832b0d4d56daf9ba8e1573deefc507", 327)]
[TestCase(@"https://github.com/netz98/n98-magerun.git",
@"4a84bf3533befb97697a2fd4be6dc217a5a7e2d7", 327)]
[TestCase(@"https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
@"62763adae5b3542f17e5bbffb2e9435531e1a9de", 327)]
[TestCase(@"https://github.com/easychen/TeamToy.git",
@"4ae1e2a50ef94ae9fcd0dfc8c645638311ad8588", 327)]
[TestCase(@"https://github.com/jv2222/ezSQL.git",
@"93eda762371c9f3d85ed342f58132ad102a44ca3", 326)]
[TestCase(@"https://github.com/GaretJax/phpbrowscap.git",
@"ed661716d0d9158bac6ab3b074b18b70f8d18bef", 326)]
[TestCase(@"https://github.com/davzie/Laravel-3-Bootstrap.git",
@"6a535cd2646f3216ccbfa5bdd41a362dec73dd42", 325)]
[TestCase(@"https://github.com/benbalter/wordpress-to-jekyll-exporter.git",
@"0c600218fcbcc4a0c51f9711b046fd71d5ada7d6", 325)]
[TestCase(@"https://github.com/FriendsOfSymfony/FOSOAuthServerBundle.git",
@"c8545d985fb89eae1385b1e0cccd526e4e1b7c31", 324)]
[TestCase(@"https://github.com/imjacobclark/Raspcontrol.git",
@"fe1741f470977636b27b370b72dfbe6fed58bb19", 324)]
[TestCase(@"https://github.com/Indatus/dispatcher.git",
@"d39889f10714e4b305be12f3f2317ff9c227c3f1", 323)]
[TestCase(@"https://github.com/FriendsOfSymfony/FOSElasticaBundle.git",
@"f93a7d278ff67a4f38b4a4b7f237908200eecfc1", 323)]
[TestCase(@"https://github.com/CoderKungfu/php-queue.git",
@"b4ec9c05b98426ca806b9ebfd7547201ed006536", 323)]
[TestCase(@"https://github.com/rackerlabs/php-cloudfiles.git",
@"7bebcf5aeade7a042f69ec02e0e03803cf42267e", 322)]
[TestCase(@"https://github.com/radiosilence/Ham.git",
@"94272f9ec8efbd7e6179a230cc269efb0e8f35fb", 322)]
[TestCase(@"https://github.com/boldperspective/Whiteboard-Framework.git",
@"8ede73692133db868b01cdf8e53774788db3230d", 322)]
[TestCase(@"https://github.com/osclass/Osclass.git",
@"ab69c65e04430bd5d63f27143ecae09faf518ece", 321)]
[TestCase(@"https://github.com/seedifferently/the-great-web-framework-shootout.git",
@"0425e9e446e91fcc587faeaa824ffdde2134ffa6", 320)]
[TestCase(@"https://github.com/ruckus/ruckusing-migrations.git",
@"946e8d9777706b851812123dcaefdaa21d3ad31a", 320)]
[TestCase(@"https://github.com/Quixotix/PHP-PayPal-IPN.git",
@"4914db03de079a2c6a8f3602ef7a6fef24e1c822", 320)]
[TestCase(@"https://github.com/UpThemes/UpThemes-Framework.git",
@"2ddfb92cec1dbfbcdc9998521752c27f17f6045c", 319)]
[TestCase(@"https://github.com/Nodge/yii-eauth.git",
@"02ed1857fd48e1d904ecaef03731f32f6bbc6eae", 318)]
[TestCase(@"https://github.com/schmittjoh/JMSSerializerBundle.git",
@"ca66cd3ace6bea5367838c6dfb00a6a0bacb8a79", 317)]
[TestCase(@"https://github.com/gregdingle/genetify.git",
@"1280687c35340e98049312dc959080f4d829ebd6", 317)]
[TestCase(@"https://github.com/gharlan/alfred-github-workflow.git",
@"5815167a2e124588959d313b32566dc63bf7df69", 317)]
[TestCase(@"https://github.com/kriswallsmith/spork.git",
@"70a466937572d59b20b8356d75f19e7abbeb5b0a", 316)]
[TestCase(@"https://github.com/Automattic/developer.git",
@"acaedb9d5fdcb40a95c556a442a9e913c6cb8fdd", 316)]
[TestCase(@"https://github.com/josegonzalez/cakephp-upload.git",
@"c9dee0eef87b19d88806e7af678e1e6c43122ba7", 315)]
[TestCase(@"https://github.com/symfony-cmf/cmf-sandbox.git",
@"1e20876745a27b18621441a20276e426e0bc468d", 312)]
[TestCase(@"https://github.com/nikic/FastRoute.git",
@"40c897afe69ed59582b30cb05f437e544ce46bdf", 312)]
[TestCase(@"https://github.com/mikey179/vfsStream.git",
@"5d97488cd5904a75f59c5ac78e422371de86e368", 312)]
[TestCase(@"https://github.com/livestreet/livestreet.git",
@"7bb0552e6ab6d549cc1ba16d83f37643afda9909", 311)]
[TestCase(@"https://github.com/bencarlson/wp-bootstrap.git",
@"a8f97338904fcfdcbc2232fe965fe569ab1b6197", 311)]
[TestCase(@"https://github.com/Codingbean/Macaw.git",
@"0b0e499c73e0c92683ccb0f82be9a5128d54ec64", 309)]
[TestCase(@"https://github.com/CakeDC/search.git",
@"9bcaa6fe0453a1c9d911b8f25d38e3f64e6943b6", 308)]
[TestCase(@"https://github.com/sebastianbergmann/phpunit-selenium.git",
@"a7401a04755dce41332a450b7111dd610caa3ace", 308)]
[TestCase(@"https://github.com/everzet/jade.php.git",
@"e57fce6f74ab3d7bd5bfdb1b986e88d591cad7b9", 308)]
[TestCase(@"https://github.com/indeyets/appserver-in-php.git",
@"deadc52eba8f97c9c791469437a8d05077bcdabe", 306)]
[TestCase(@"https://github.com/CodeSleeve/asset-pipeline.git",
@"50f267778bce4bc3ef4bedbe4e53a6eb22c7a831", 306)]
[TestCase(@"https://github.com/whiteoctober/Pagerfanta.git",
@"c41473a84768ac18ec107033dbfa87229cdefafa", 306)]
[TestCase(@"https://github.com/yuguo/33pu.git",
@"b3aaa61a5e986dae49c2ad540265555d9dd38225", 305)]
[TestCase(@"https://github.com/leafo/scssphp.git",
@"5a4d80e63ba0957ce4933a20a8114d034153731f", 305)]
[TestCase(@"https://github.com/ichikaway/cakephp-mongodb.git",
@"aea29de7732b50a4db746a5e414c7dd6792eaba9", 304)]
[TestCase(@"https://github.com/wardrobecms/wardrobe.git",
@"8451f59ab0828f803c70ada9dacae5e89d98147a", 304)]
[TestCase(@"https://github.com/CodepadME/laravel-tricks.git",
@"62f288592ff1f55cf8842d95884342662811455f", 303)]
[TestCase(@"https://github.com/markstory/asset_compress.git",
@"889a8b748de222874989b24f805d6302af3f92c7", 302)]
[TestCase(@"https://github.com/facebook/wordpress.git",
@"6761d81aaa9264a2694a565a3d6eb90f19491bd5", 302)]
[TestCase(@"https://github.com/silverstripe/silverstripe-cms.git",
@"baff7f12bd910fed6b48aafc7265073cf30d7c84", 301)]
[TestCase(@"https://github.com/doctrine/common.git",
@"434c364b6a8780c16769b60fcc56e61e6bac766f", 301)]
[TestCase(@"https://github.com/videlalvaro/RabbitMqBundle.git",
@"05059f832c763e965ba7d4cc91b2ba489e2c1dc7", 299)]
[TestCase(@"https://github.com/davidpersson/media.git",
@"0cf78eb369877ecde5908d7224a798e3e4fe3aab", 298)]
[TestCase(@"https://github.com/zavg/Asis.git",
@"81ca32ea98674ae38ad6819ad37eff9fee12ceeb", 298)]
[TestCase(@"https://github.com/MrRio/shellwrap.git",
@"38b4de35379d3056a1374f5f725c2261fea1e16e", 298)]
[TestCase(@"https://github.com/liip/LiipImagineBundle.git",
@"2be6f957694d06d6d2a3203ec16ecdbf0d849765", 296)]
[TestCase(@"https://github.com/bastianallgeier/gantti.git",
@"98a35250c14e6759262e2853f5a2c6aba300b109", 296)]
[TestCase(@"https://github.com/mledoze/countries.git",
@"3071df830922023b2e3c282bb52da499cbf73040", 294)]
[TestCase(@"https://github.com/cosenary/Instagram-PHP-API.git",
@"d13b952feac0cccb3bface9a035fe5d7362f775d", 294)]
[TestCase(@"https://github.com/vlucas/phpdotenv.git",
@"a6d7d9778975100460a24395f8b5175024e14a54", 293)]
[TestCase(@"https://github.com/phpcr/phpcr.git",
@"eea4472c18e6f01fed9ce30dbada8255759ab810", 293)]
[TestCase(@"https://github.com/avalanche123/AvalancheImagineBundle.git",
@"9d390d2ab934e03fb8949986fc1bfe2ae1f8839d", 292)]
[TestCase(@"https://github.com/ezyang/htmlpurifier.git",
@"80ebd4322e3b98bc25c3ed3effe99a1653bc00fc", 292)]
[TestCase(@"https://github.com/q2a/question2answer.git",
@"9d9d8b9a95369cf1a17edb1188865cf38ef167d1", 291)]
[TestCase(@"https://github.com/CakeDC/utils.git",
@"ea48ed95b62517ddb046a46c17638726242121da", 289)]
[TestCase(@"https://github.com/Wixel/GUMP.git",
@"b16d1e40c4ff0d67522601c5f0b39b10cbb5b35a", 289)]
[TestCase(@"https://github.com/schmittjoh/twig.js.git",
@"8730d0c833e07cdb3f329afb61cc3ab82ad5b623", 289)]
[TestCase(@"https://github.com/igorw/evenement.git",
@"30871db2821979b3d5754b3b3fc09846998deb60", 289)]
[TestCase(@"https://github.com/varspool/Wrench.git",
@"88560c9efba08982abc1d8455ab4f3a5a652e7b2", 285)]
[TestCase(@"https://github.com/RainLoop/rainloop-webmail.git",
@"e211899c7b62d51fb216ebb9c9ce73401e2cd485", 284)]
[TestCase(@"https://github.com/thephpleague/fractal.git",
@"f191fb299a92eee75927821c6508f2fbba7013ae", 284)]
[TestCase(@"https://github.com/Wisembly/elephant.io.git",
@"8e151a58e931c87ef1b7d2d2124f5b8d79637d1e", 284)]
[TestCase(@"https://github.com/webarto/instagraph.git",
@"a9bcee13479d7630997c79d282dd2f48ab3eed7e", 283)]
[TestCase(@"https://github.com/richbradshaw/CSS-Transitions-Transforms-and-Animation.git",
@"9229d6a5070de9acb52d977457c15a73629c1f53", 282)]
[TestCase(@"https://github.com/composer/installers.git",
@"26d37e307f9aa6e2e81806a6525666f8ab5ba0ff", 281)]
[TestCase(@"https://github.com/educoder/pest.git",
@"31e1b7a6dd208c40b1265ce6e600132c322f7c92", 281)]
[TestCase(@"https://github.com/speedmax/h2o-php.git",
@"3baac055ea8520a894ea58b1c00d9e38391208a1", 281)]
[TestCase(@"https://github.com/bergie/dnode-php.git",
@"048deef50afe95e21ef25c026bd79b2917920f3b", 281)]
[TestCase(@"https://github.com/cobub/razor.git",
@"8dab7b7f5075d2770fde436d3e92415f68c792c9", 281)]
[TestCase(@"https://github.com/phpfunk/alfred-spotify-controls.git",
@"3a2e739633e831531cfe926ffc100f0199626538", 280)]
[TestCase(@"https://github.com/datawrapper/datawrapper.git",
@"f7c97f8a8c885b300b2c68654c02a2004292e9e3", 279)]
[TestCase(@"https://github.com/zendframework/ZendDeveloperTools.git",
@"763cecf9d68fc0d3765d45847047817a47ecdd4a", 278)]
[TestCase(@"https://github.com/johmue/mysql-workbench-schema-exporter.git",
@"beb2189e26b0caa2eca88746afbf427a9f910da7", 277)]
[TestCase(@"https://github.com/drupalcommerce/drupalcommerce.git",
@"3bc215f09f86b009aa1b98c890dc50a9399be28a", 277)]
[TestCase(@"https://github.com/malyshev/yii-debug-toolbar.git",
@"3cb6ba29487e51c661eef098a29fa8c1195706da", 276)]
[TestCase(@"https://github.com/easychen/LazyPHP.git",
@"99f2837615a0801bb27520827b4ec73fb8559b20", 276)]
[TestCase(@"https://github.com/nikic/scalar_objects.git",
@"57d3bc50e063eb7d81cb8d8deb0aacee08fa2bff", 276)]
[TestCase(@"https://github.com/jaz303/phake.git",
@"d0ab677620ca9a2f85a5b220338ccd63bb61a91e", 275)]
[TestCase(@"https://github.com/techdivision/TechDivision_ApplicationServer.git",
@"a79b6cac0b954b2bc1283f567495558ff0c6985d", 274)]
[TestCase(@"https://github.com/hippyvm/hippyvm.git",
@"0954802a563164875b99c6eb98a6017a46cc6a48", 274)]
[TestCase(@"https://github.com/PocketMine/PocketMine-MP.git",
@"03d46020ec65043b9446fa865f3b8924221d3eef", 273)]
[TestCase(@"https://github.com/etrepat/baum.git",
@"926d28957114740ecf3c5e29ddd982c111f5c1ea", 273)]
[TestCase(@"https://github.com/Cilex/Cilex.git",
@"7acd965a609a56d0345e8b6071c261fbdb926cb5", 273)]
[TestCase(@"https://github.com/CakeDC/migrations.git",
@"4406d5d3911767737af481365e9adee1f23652f9", 272)]
[TestCase(@"https://github.com/abhinavsingh/JAXL.git",
@"8b389dae609ff46e561fe5d5402ae145af81adaa", 272)]
[TestCase(@"https://github.com/Yoast/wordpress-seo.git",
@"fe985c3d9e543a79b4eddf5f8f8164b04a7076fe", 271)]
[TestCase(@"https://github.com/opengovplatform/opengovplatform-DMS.git",
@"97dbc7dcf42b2477f818f1c0e5307f46aa2eed31", 270)]
[TestCase(@"https://github.com/ornicar/lichess.git",
@"197523427d9f309016d1400b276f4f1fb6d309e5", 270)]
[TestCase(@"https://github.com/noodlehaus/dispatch.git",
@"77898d0f3a599f8ab9dca39fad3fff62487314e4", 270)]
[TestCase(@"https://github.com/phpsysinfo/phpsysinfo.git",
@"afe0a602ef7d9508b913a53f20fe0b3640b72ec7", 269)]
[TestCase(@"https://github.com/willdurand/Hateoas.git",
@"558028fe0a840d79a9e4d53c384f33758d0c5086", 269)]
[TestCase(@"https://github.com/cashmusic/platform.git",
@"962f1dd32f6b9d9d46180bf39cb8dd3891e7369a", 267)]
[TestCase(@"https://github.com/elliothaughin/codeigniter-twitter.git",
@"589802c3525cea9e513da96149effafe2c3a5c17", 266)]
[TestCase(@"https://github.com/bobthecow/psysh.git",
@"33db0d52546a2b543739eee0ec62235fa7813d35", 265)]
[TestCase(@"https://github.com/davzie/laravel-bootstrap.git",
@"d7f9bd1f6c32c5dfd101741ca871505aee32aaa8", 265)]
[TestCase(@"https://github.com/lstrojny/functional-php.git",
@"afb01a9d9c4bd85ea7eccd35f7136e208f0c3577", 263)]
[TestCase(@"https://github.com/iliaal/php_excel.git",
@"63ae657d9f06cc9521d26cbccc43596213ade61f", 263)]
[TestCase(@"https://github.com/phpfreak/Project-Pier.git",
@"7b5e2feb4c6cf036b49ac997710774a901ff2822", 262)]
[TestCase(@"https://github.com/JeffreyWay/Easy-WordPress-Custom-Post-Types.git",
@"a5b97ad695bb3988b47eda022b7cc87cca442953", 262)]
[TestCase(@"https://github.com/jublonet/codebird-php.git",
@"8ea20cf7c42701e372c9d1badfcee4505b798d03", 262)]
[TestCase(@"https://github.com/kzykhys/Ciconia.git",
@"94e9c7564d0fe00eafa6800176ff42147958f855", 262)]
[TestCase(@"https://github.com/neitanod/forceutf8.git",
@"546fe2b8dfd280764a4d7906c9a9b1dc955eb876", 262)]
[TestCase(@"https://github.com/aramk/crayon-syntax-highlighter.git",
@"8869e1ac95ced7ea6de0a5742ef90ca0d1e771f7", 261)]
[TestCase(@"https://github.com/fedecarg/apify-library.git",
@"845c42f1d1767270503516e933646f5abc2816e3", 261)]
[TestCase(@"https://github.com/Schepp/CSS-JS-Booster.git",
@"bd9b47749a3f4b43e7a9cfd30105056af49b29b5", 260)]
[TestCase(@"https://github.com/dustin10/VichUploaderBundle.git",
@"3578d59bdc9ee98f17d9c55262c17de269fd1d4a", 259)]
[TestCase(@"https://github.com/chrisboulton/php-diff.git",
@"98c81c1fc129d5b890fa38646b55ef8f61aacecb", 258)]
[TestCase(@"https://github.com/jeremyclark13/automatic-theme-plugin-update.git",
@"edc11b33512b9a1c664b96e02be1f090e2be76ce", 258)]
[TestCase(@"https://github.com/jigoshop/jigoshop.git",
@"7471fdcbd1318fe5f3f03de9ecd4c1dfcdcc06ce", 257)]
[TestCase(@"https://github.com/jimrubenstein/php-profiler.git",
@"61b80f1d955a25fbb5cc395aebfd7b636b2c61e1", 257)]
[TestCase(@"https://github.com/NielsLeenheer/WhichBrowser.git",
@"20b73e6b84d86c4a224d3d3be7f623a93b623771", 257)]
[TestCase(@"https://github.com/davemo/end-to-end-with-angularjs.git",
@"e9ba495e2678322f318439684b0559c4d5578a4a", 257)]
[TestCase(@"https://github.com/FriendsOfSymfony/FOSCommentBundle.git",
@"409992eb6dfaea7fb013a0679cf6270ebd37331f", 256)]
[TestCase(@"https://github.com/foursquare/twofishes.git",
@"e47444a91f49e774c914eac87ed333498a3ae85e", 256)]
[TestCase(@"https://github.com/panique/php-mvc.git",
@"2fe402b7e10a642c18a56826366dfdb1bcd5b2ad", 256)]
[TestCase(@"https://github.com/rydurham/L4withSentry.git",
@"b5d23aed8a6b2c7d71fe1e5ac406242cb8cf9126", 255)]
[TestCase(@"https://github.com/jasonlewis/basset.git",
@"79b94c3edef5015a34e3a0f834586358a6f99885", 255)]
[TestCase(@"https://github.com/doctrine/DoctrineModule.git",
@"cef5366f4293adeb5b391e9852cdcee4c4dffc70", 254)]
[TestCase(@"https://github.com/osCommerce/oscommerce.git",
@"1705380eadfd14572764ba7c783d75951ef9d299", 254)]
[TestCase(@"https://github.com/hightman/scws.git",
@"5b013614bee83e1c0f6f4bda8f1cf53fbccafc56", 254)]
[TestCase(@"https://github.com/CakeDC/users.git",
@"5b129847a21b69054528369e4674f03fd9bd4d15", 253)]
[TestCase(@"https://github.com/guilhermeblanco/zendframework1-doctrine2.git",
@"8830be9ddcbde1cb666c6ddb6ccf601169a08f83", 252)]
[TestCase(@"https://github.com/pimcore/pimcore.git",
@"98714c0185fb0c4fd5e8ec4a190d8f69815a4302", 252)]
[TestCase(@"https://github.com/phpspec/prophecy.git",
@"31fa1e763382e4de535ed8b136d809690af3d268", 252)]
[TestCase(@"https://github.com/phalcon/phalcon-devtools.git",
@"0543b4411c99b3522820c1da7b3db5d63a2d0241", 252)]
[TestCase(@"https://github.com/facebook/arcanist.git",
@"43792895a679d0d50acd2b8a34e5d246ebe3203a", 251)]
[TestCase(@"https://github.com/gocart/GoCart.git",
@"324eccb2c4405bc81a5eece96dab06e121b15088", 249)]