-
Notifications
You must be signed in to change notification settings - Fork 5
/
addendum-files.txt
8130 lines (8130 loc) · 208 KB
/
addendum-files.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
38798 vendors, 110212 packages
read-me-first file 100348 91%
README.md 89509 81.215%
readme.md 5893 5.347%
README.markdown 799 0.725%
Readme.md 757 0.687%
README 727 0.66%
readme.txt 435 0.395%
README.rst 400 0.363%
README.txt 233 0.211%
README.MD 220 0.2%
NOTICE 153 0.139%
README.textile 85 0.077%
README.mdown 85 0.077%
Readme.rst 55 0.05%
NOTICE.txt 54 0.049%
DESCRIPTION 48 0.044%
README.mkd 42 0.038%
NOTICE.md 38 0.034%
readme.html 34 0.031%
README.ru.md 26 0.024%
README.html 26 0.024%
ReadMe.md 24 0.022%
readme.markdown 24 0.022%
README.md~ 23 0.021%
USAGE.md 22 0.02%
README.ja.md 19 0.017%
README_RU.md 19 0.017%
readme.rst 19 0.017%
README-GIT.md 18 0.016%
readme.MD 18 0.016%
README.TXT 17 0.015%
SUMMARY.md 16 0.015%
readme 13 0.012%
README-RU.md 12 0.011%
README.org 12 0.011%
Readme.markdown 11 0.01%
README.en.md 11 0.01%
README.asciidoc 11 0.01%
Readme.txt 10 0.009%
readmegen.yml 9 0.008%
README_ru.md 9 0.008%
README-ES.md 8 0.007%
README_EN.md 8 0.007%
GETTING_STARTED.md 8 0.007%
readme.png 8 0.007%
README.mkdn 7 0.006%
README_CN.md 7 0.006%
README.git 7 0.006%
readme_ru.md 7 0.006%
README-ru.md 7 0.006%
getting-started.html 7 0.006%
usage.php 7 0.006%
DEVELOPMENT_README.md 7 0.006%
readme.md~ 6 0.005%
README.rdoc 6 0.005%
readme-ja.md 6 0.005%
README.Debian 6 0.005%
README.dist.md 6 0.005%
README.adoc 6 0.005%
readme.php 6 0.005%
README_zh.md 6 0.005%
readme.mdown 6 0.005%
Readme.php 5 0.005%
README-ID.md 5 0.005%
README_RUS.md 5 0.005%
description 5 0.005%
README_en.md 5 0.005%
README-zh.md 5 0.005%
README_spanish.md 5 0.005%
README-ja.md 5 0.005%
README_ExportaFacil.md 5 0.005%
README_old.md 4 0.004%
README_OLD.md 4 0.004%
README-DEV.md 4 0.004%
README_Dev.md 4 0.004%
README.fr.md 4 0.004%
README.sublime-workspace 4 0.004%
readmegen 4 0.004%
README_zh_CN.md 4 0.004%
htmLawed_README.htm 4 0.004%
htmLawed_README.txt 4 0.004%
README.creole 4 0.004%
readme.textile 4 0.004%
README-EN.md 3 0.003%
readme.pdf 3 0.003%
ReadMe.txt 3 0.003%
readme.mkd 3 0.003%
README 2.md 3 0.003%
README.zh-CN.md 3 0.003%
readme.wiki 3 0.003%
readme-header.jpg 3 0.003%
README.zh.md 3 0.003%
README_Correios.md 3 0.003%
README_ClearsaleTotal.md 3 0.003%
README_ClearsaleStart.md 3 0.003%
README_fr.md 3 0.003%
README.RU.md 3 0.003%
readme_en.txt 3 0.003%
readme_ru.txt 3 0.003%
.README.md.swp 3 0.003%
README-TR.md 3 0.003%
Notice.php 3 0.003%
README.ZH.MD 2 0.002%
README.pdf 2 0.002%
README.EN.md 2 0.002%
gulp-readme.md 2 0.002%
README.apache 2 0.002%
README_Confirm.md 2 0.002%
readme.dcy 2 0.002%
README-KR.md 2 0.002%
README.RM 2 0.002%
readme_en.md 2 0.002%
README.FONT.txt 2 0.002%
README.md.template 2 0.002%
ReadMe.rst 2 0.002%
description.json 2 0.002%
README_1.md 2 0.002%
.build-readme 2 0.002%
README-1.png 2 0.002%
README-2.png 2 0.002%
README_TR.md 2 0.002%
readme-laravel.md 2 0.002%
README_WITHOUT_LINES.rst 2 0.002%
README.PROVIDERS.md 2 0.002%
README.PROVIDER-GUIDE.md 2 0.002%
README.UPGRADING.md 2 0.002%
google-analytics-README.md 2 0.002%
readme_rus.md 2 0.002%
_README.md 2 0.002%
USAGE 2 0.002%
README3.md 2 0.002%
README2.md 2 0.002%
README4.md 2 0.002%
README5.md 2 0.002%
README_ZH.md 2 0.002%
README.rus.md 2 0.002%
README-front-end.md 2 0.002%
README.de.md 2 0.002%
README.mediawiki 2 0.002%
Description.php 2 0.002%
README_zh-CN.md 2 0.002%
readme.mustache.md 2 0.002%
description.html 2 0.002%
README_PT.md 2 0.002%
READMe.md 2 0.002%
readme_zh.md 2 0.002%
README-FROM-SCRATCH.md 2 0.002%
README-pt_BR.md 2 0.002%
README.tpl 2 0.002%
README.old.md 2 0.002%
README-fr.md 2 0.002%
SUPPORT.README 2 0.002%
Usage.php 2 0.002%
UPDATE.README 2 0.002%
READMED.MD 2 0.002%
Readme.md~ 2 0.002%
README-FR.md 2 0.002%
README_ja.md 2 0.002%
description.ru 2 0.002%
readme.zh.md 2 0.002%
readme-pt_BR.md 2 0.002%
README_ES.md 2 0.002%
license or copyright file 63509 57.6%
LICENSE 46493 42.185%
LICENSE.md 7819 7.095%
LICENSE.txt 4145 3.761%
license.md 1007 0.914%
LICENCE 755 0.685%
license.txt 606 0.55%
COPYING 490 0.445%
LICENCE.md 269 0.244%
license 187 0.17%
LICENCE.txt 131 0.119%
LICENSE.TXT 118 0.107%
MIT-LICENSE.txt 113 0.103%
licence.md 101 0.092%
COPYING.LESSER 84 0.076%
MIT-LICENSE 77 0.07%
COPYING.txt 77 0.07%
LICENSE_AFL.txt 77 0.07%
License.txt 73 0.066%
COPYRIGHT 63 0.057%
LICENSE-MIT 43 0.039%
License 41 0.037%
License.md 39 0.035%
UNLICENSE 38 0.034%
licence 34 0.031%
licence.txt 32 0.029%
GPL-LICENSE.txt 29 0.026%
LICENSE-2.0.txt 22 0.02%
LICENSE.MD 19 0.017%
COPYING.md 16 0.015%
Licence.txt 14 0.013%
gpl-3.0.txt 13 0.012%
COPYRIGHT.md 13 0.012%
LICENSE.MIT 13 0.012%
COPYNG 13 0.012%
COPYRIGHT.txt 12 0.011%
LICENSE-COMMERCIAL-SAAS.mkd 12 0.011%
LICENSE-COMMERCIAL-WEBSITE.mkd 12 0.011%
LICENSE-AGPL.mkd 12 0.011%
LICENSE-COMMERCIAL-SAAS.md 11 0.01%
LICENSE-AGPL.md 11 0.01%
LICENSE-COMMERCIAL-WEBSITE.md 11 0.01%
LICENSE-COMMERCIAL-WEBSITES.md 11 0.01%
lgpl-3.0.txt 10 0.009%
COPYING.lib 10 0.009%
LICENSE.LGPL 9 0.008%
LICENSE-COMMERCIAL-WEBSITES.mkd 9 0.008%
LISENCE 9 0.008%
gpl.txt 8 0.007%
MIT-LICENCE 8 0.007%
license.html 7 0.006%
LICENSE-MIT.txt 7 0.006%
LICENSE-GPL 7 0.006%
LICENSE-MIT.md 6 0.005%
license-mit.txt 6 0.005%
Licence.md 6 0.005%
GPL-LICENSE 6 0.005%
LICENSE.html 6 0.005%
LICENSE_YAML 6 0.005%
MIT.LICENSE 5 0.005%
GPLv3.txt 5 0.005%
LICENSE.APACHE2 5 0.005%
LICENSE-COMMERCIAL-WEBSITES.html 5 0.005%
LICENSE-AGPL.html 5 0.005%
LICENSE-COMMERCIAL-SAAS.html 5 0.005%
LICENSE-COMMERCIAL-WEBSITE.html 5 0.005%
LICENSE.textile 5 0.005%
LICENSE.markdown 5 0.005%
LICENSE.LESSER 5 0.005%
APACHE-LICENSE-2.0.txt 4 0.004%
LICENSE_tr 4 0.004%
.licenser.yml 4 0.004%
Licence 4 0.004%
ZF2-LICENSE.txt 4 0.004%
UNICODE-LICENSE.txt 4 0.004%
eula_en.txt 3 0.003%
eula.txt 3 0.003%
lgpl.txt 3 0.003%
COPYING.GPL 3 0.003%
COPYING.LGPL 3 0.003%
mit-license.md 3 0.003%
License.pdf 3 0.003%
LICANSE 3 0.003%
agpl.txt 3 0.003%
SYMFONY LICENSE 3 0.003%
LGPL.txt 3 0.003%
_LICENSE.txt 3 0.003%
LICENSE-AGAVI 3 0.003%
LICENSE-ICU 3 0.003%
LICENSE-SCHEMATRON 3 0.003%
LICENSE-UNICODE_CLDR 3 0.003%
license.MD 3 0.003%
LICENSE.BSD 3 0.003%
copying.txt 3 0.003%
txt.license 3 0.003%
GNU Lesser General Public License v2.1 - GNU Project - Free Software Foundation.html 3 0.003%
GPLv3 3 0.003%
LICENSE_OSL.txt 3 0.003%
license.php 3 0.003%
ZEND-LICENSE.md 3 0.003%
LICENSE-numbro 2 0.002%
_LGPL.txt 2 0.002%
LICENSE-Numeraljs 2 0.002%
LICENCE.rst 2 0.002%
LICENSE_SENTINEL 2 0.002%
LICENSE_SOA 2 0.002%
ASF-LICENSE-2.0 2 0.002%
3rd-party-licenses.md 2 0.002%
license-faq.md 2 0.002%
LISENCE.txt 2 0.002%
BLUESPICE-LICENCE 2 0.002%
Copyright.txt 2 0.002%
agpl-3.0.txt 2 0.002%
LICENSE_YII 2 0.002%
DOCS-LICENSE 2 0.002%
GPL 2 0.002%
license-gpl3.txt 2 0.002%
LICENSE-APACHE 2 0.002%
LICENSE~ 2 0.002%
LICENSE-Apache 2 0.002%
CheckLicense.php 2 0.002%
license.mustache 2 0.002%
license.rtf 2 0.002%
license_gpl3 2 0.002%
license_gpl2 2 0.002%
RtxLabsDataTransformationBundle.php 2 0.002%
gpl-2.0.txt 2 0.002%
Licenses.md 2 0.002%
LICENSE.GPL2 2 0.002%
LICENSE_GPLv2.md 2 0.002%
LICENSE_GPLv3.md 2 0.002%
LICENSE_MIT.md 2 0.002%
MIT-LICENCE.txt 2 0.002%
LICENSE_LGPL.txt 2 0.002%
LICENSE_german 2 0.002%
LICENSE.mit 2 0.002%
BarRatingPluginAsset.php 2 0.002%
LICENSE 2 2 0.002%
copyright & license.txt 2 0.002%
LICENSE.LGPL.txt 2 0.002%
LICENSE.GPL.txt 2 0.002%
MIT-License.txt 2 0.002%
changes file 11926 10.8%
CHANGELOG.md 8313 7.543%
CHANGELOG 508 0.461%
changelog.md 448 0.406%
CHANGELOG.txt 229 0.208%
CHANGES.txt 207 0.188%
CHANGES.md 204 0.185%
ChangeLog 166 0.151%
CHANGE.md 150 0.136%
ChangeLog.md 126 0.114%
Changelog.md 117 0.106%
changelog.txt 116 0.105%
CHANGELOG-1.0.md 96 0.087%
changelog.yml 72 0.065%
release.md 71 0.064%
CHANGELOG-2.0.md 67 0.061%
CHANGES 55 0.05%
CHANGELOG-0.5.md 49 0.044%
history.md 48 0.044%
releases.json 45 0.041%
RELEASE 39 0.035%
CHANGELOG-5.2.md 37 0.034%
CHANGELOG-5.3.md 37 0.034%
change.xml 36 0.033%
changelog 33 0.03%
HISTORY.md 33 0.03%
RELEASE-NOTES.md 27 0.024%
CHANGELOG-1.1.md 27 0.024%
Changelog 25 0.023%
CHANGELOG-3.0.md 21 0.019%
CHANGELOG.markdown 20 0.018%
changes.md 19 0.017%
CHANGELOG.TXT 19 0.017%
CHANGELOG-3.1.md 19 0.017%
CHANGELOG.MD 18 0.016%
release.sh 18 0.016%
CHANGELOG-3.2.md 17 0.015%
CHANGELOG-0.x.md 16 0.015%
RELEASE.md 16 0.015%
CHANGE.MD 14 0.013%
CHANGELOG.mkd 13 0.012%
CHANGELOG-1.2.md 13 0.012%
History.md 12 0.011%
ChangeLog.markdown 12 0.011%
RELEASE_NOTES.txt 12 0.011%
ChangeLog.txt 12 0.011%
CHANGELOG-2.1.md 12 0.011%
Changes 10 0.009%
Changelog.txt 9 0.008%
RELEASENOTES.md 9 0.008%
release-notes.html 8 0.007%
change.log 8 0.007%
RELEASE_NOTES 8 0.007%
CHANGELOG.mdown 8 0.007%
HISTORY.txt 7 0.006%
release.php 7 0.006%
CHANGELOG-0.1.md 6 0.005%
changelog.htm 6 0.005%
CHANGELOG.rst 6 0.005%
CHANGELOG-1.3.md 6 0.005%
release-notes.md 5 0.005%
CHANGELOG.html 5 0.005%
CHANGELOG-1.x.md 5 0.005%
release 5 0.005%
release-notes 4 0.004%
RELEASE_NOTES.md 4 0.004%
CHANGELOG-1.4.md 4 0.004%
changes.txt 4 0.004%
ChangeLog-1.0.md 4 0.004%
changelog.rst 4 0.004%
changelog.php 4 0.004%
changelog.json 3 0.003%
CHANGELOG-4.0.md 3 0.003%
release.txt 3 0.003%
CHANGELOG.textile 3 0.003%
ChangeLog-4.0.md 3 0.003%
CHANGELOG-0.9 3 0.003%
CHANGELOG-1.0 3 0.003%
CHANGELOG-0.11 3 0.003%
CHANGELOG-0.10 3 0.003%
HISTORY 3 0.003%
CHANGELOG 2.2.md 3 0.003%
CHANGELOG 2.1.md 3 0.003%
CHANGELOG.rnd 3 0.003%
change 3 0.003%
release_notes.md 3 0.003%
changelog.mdown 3 0.003%
changelog.sh 2 0.002%
changelog-highcharts.htm 2 0.002%
changelog-highmaps.htm 2 0.002%
changelog-highstock.htm 2 0.002%
release_notes.txt 2 0.002%
CHANGELOG-2.x 2 0.002%
RELEASES.md 2 0.002%
CHANGELOG-1.0.0-alpha.md 2 0.002%
CHANGELOG-1.0.0-beta.md 2 0.002%
CHANGES.RST 2 0.002%
CHANGLOG.md 2 0.002%
CHANGES.rst 2 0.002%
change.md 2 0.002%
ChangeLog-5.3.md 2 0.002%
ChangeLog-5.2.md 2 0.002%
ChangeLog-5.1.md 2 0.002%
ChangeLog-5.4.md 2 0.002%
ChangeLog-5.0.md 2 0.002%
ChangeLog-4.8.md 2 0.002%
ChangeLog-4.4.md 2 0.002%
ChangeLog-4.3.md 2 0.002%
ChangeLog-4.2.md 2 0.002%
ChangeLog-4.5.md 2 0.002%
ChangeLog-4.6.md 2 0.002%
ChangeLog-4.7.md 2 0.002%
ChangeLog-4.1.md 2 0.002%
CHANGELOG-1.5.md 2 0.002%
CHANGELOG-1.6.md 2 0.002%
WHATSNEW 2 0.002%
RELEASE-NOTES 2 0.002%
history.txt 2 0.002%
History.php 2 0.002%
RELEASES.txt 2 0.002%
CHANGELOG-2.x.md 2 0.002%
contribution guidelines file 6430 5.8%
CONTRIBUTING.md 6004 5.448%
contributing.md 205 0.186%
CONTRIBUTING.markdown 73 0.066%
CONTRIBUTING 39 0.035%
CONTRIBUTE.md 35 0.032%
DEVELOPMENT.md 18 0.016%
CONTRIBUTING.mdown 12 0.011%
HACKING.md 11 0.01%
CONTRIBUTING.textile 10 0.009%
Contributing.md 7 0.006%
CONTRIBUTING.rst 6 0.005%
HACKING 3 0.003%
CONTRIBUTING.txt 3 0.003%
development.md 2 0.002%
CONTRIBUTING.MD 2 0.002%
other files 410235
composer.json 108465 98.415%
.gitignore 78383 71.12%
.travis.yml 36876 33.459%
phpunit.xml.dist 19399 17.602%
phpunit.xml 18075 16.4%
composer.lock 16572 15.036%
.gitattributes 11131 10.1%
.scrutinizer.yml 7735 7.018%
.editorconfig 6707 6.086%
Module.php 3113 2.825%
package.json 3054 2.771%
.php_cs 2786 2.528%
index.php 2521 2.287%
.coveralls.yml 2292 2.08%
build.xml 2190 1.987%
.styleci.yml 1949 1.768%
Makefile 1584 1.437%
bower.json 1570 1.425%
.htaccess 1445 1.311%
_config.php 1344 1.219%
.codeclimate.yml 1285 1.166%
gulpfile.js 1205 1.093%
phpcs.xml 1185 1.075%
bootstrap.php 1171 1.062%
phpspec.yml 1077 0.977%
Gruntfile.js 953 0.865%
CONDUCT.md 908 0.824%
.bowerrc 871 0.79%
autoload.php 825 0.749%
example.php 793 0.72%
composer.phar 763 0.692%
codeception.yml 733 0.665%
.env.example 702 0.637%
.gitmodules 669 0.607%
autoload_classmap.php 660 0.599%
VERSION 628 0.57%
registration.php 618 0.561%
server.php 602 0.546%
artisan 598 0.543%
test.php 582 0.528%
phpunit.php 578 0.524%
Vagrantfile 550 0.499%
start.php 540 0.49%
phpmd.xml 512 0.465%
manifest.xml 462 0.419%
UPGRADE.md 457 0.415%
ext_emconf.php 433 0.393%
index.html 418 0.379%
config.php 405 0.367%
circle.yml 394 0.357%
Bootstrap.php 383 0.348%
.project 378 0.343%
ext_localconf.php 369 0.335%
package.xml 352 0.319%
phpdoc.dist.xml 350 0.318%
modman 346 0.314%
.DS_Store 346 0.314%
.jshintrc 335 0.304%
behat.yml 327 0.297%
docker-compose.yml 310 0.281%
appveyor.yml 307 0.279%
ext_tables.php 302 0.274%
box.json 302 0.274%
phpspec.yml.dist 298 0.27%
Dockerfile 294 0.267%
TODO.md 292 0.265%
autoload_register.php 290 0.263%
autoload_function.php 285 0.259%
ruleset.xml 283 0.257%
autoloader.php 283 0.257%
init.php 272 0.247%
logo.png 270 0.245%
yii.bat 260 0.236%
ext_icon.gif 252 0.229%
.buildpath 249 0.226%
requirements.php 237 0.215%
apigen.neon 236 0.214%
functions.php 228 0.207%
behat.yml.dist 224 0.203%
.sensiolabs.yml 224 0.203%
PULL_REQUEST_TEMPLATE.md 222 0.201%
mkdocs.yml 215 0.195%
module.json 212 0.192%
demo.php 209 0.19%
ext_tables.sql 208 0.189%
Exception.php 204 0.185%
ISSUE_TEMPLATE.md 202 0.183%
.atoum.php 202 0.183%
favicon.ico 199 0.181%
phpdoc.xml 199 0.181%
screenshot.png 179 0.162%
Gemfile 178 0.162%
yii 175 0.159%
code-of-conduct.md 173 0.157%
build.properties 172 0.156%
build.default.properties 171 0.155%
ext_conf_template.txt 165 0.15%
.semver 160 0.145%
component.json 156 0.142%
helpers.php 153 0.139%
phpcs.xml.dist 152 0.138%
config.xml 151 0.137%
AUTHORS 149 0.135%
.check-author.yml 146 0.132%
CODE_OF_CONDUCT.md 141 0.128%
.eslintrc 141 0.128%
phpunit.travis.xml 141 0.128%
Gulpfile.js 139 0.126%
Client.php 137 0.124%
AutoloadExample.php 137 0.124%
INSTALL.md 137 0.124%
robots.txt 136 0.123%
CREDITS 136 0.123%
style.css 135 0.122%
ride.json 134 0.122%
sami.php 132 0.12%
ext_icon.png 131 0.119%
Widget.php 126 0.114%
TODO 126 0.114%
.npmignore 124 0.113%
.formatter.yml 123 0.112%
.bootstrap.atoum.php 123 0.112%
build.sh 121 0.11%
CONTRIBUTORS.md 120 0.109%
activate.php 120 0.109%
config.rb 119 0.108%
version 117 0.106%
init.bat 114 0.103%
init 114 0.103%
RoboFile.php 114 0.103%
VERSION.txt 111 0.101%
install.php 110 0.1%
.gitlab-ci.yml 110 0.1%
puli.json 110 0.1%
provides.json 109 0.099%
Doxyfile 108 0.098%
build.php 108 0.098%
Gemfile.lock 108 0.098%
phpmd.xml.dist 105 0.095%
console 105 0.095%
travis.php.ini 105 0.095%
phpcs.ruleset.xml 105 0.095%
routes.php 105 0.095%
UPGRADING.md 104 0.094%
manifest.php 103 0.093%
Provider.php 102 0.093%
logo.gif 102 0.093%
autoload.php.dist 101 0.092%
Plugin.php 101 0.092%
.gush.yml 100 0.091%
language.xml 99 0.09%
.eslintignore 97 0.088%
phpdox.xml 96 0.087%
.env 95 0.086%
contributors.txt 95 0.086%
extension.xml 95 0.086%
init_autoloader.php 95 0.086%
plugin.php 93 0.084%
scrutinizer.yml 91 0.083%
.infra.json 91 0.083%
icon.png 90 0.082%
webpack.config.js 88 0.08%
UPGRADE-2.2.md 86 0.078%
phpunit.dist.xml 85 0.077%
yarn.lock 84 0.076%
.jshintignore 83 0.075%
Config.php 83 0.075%
karma.conf.js 83 0.075%
cli-config.php 83 0.075%
Procfile 83 0.075%
test.sh 82 0.074%
INSTALL 81 0.073%
UPGRADE-2.3.md 81 0.073%
Rakefile 81 0.073%
phpmd.ruleset.xml 80 0.073%
humbug.json.dist 80 0.073%
generate-api.sh 80 0.073%
.hhconfig 79 0.072%
plugin.xml 79 0.072%
Response.php 78 0.071%
phpci.yml 78 0.071%
composer.json~ 78 0.071%
examples.php 77 0.07%
Request.php 77 0.07%
uninstall.php 76 0.069%
.jscsrc 76 0.069%
.mailmap 76 0.069%
travis.phpunit.xml 76 0.069%
.gitreview 75 0.068%
.php_cs.dist 75 0.068%
app.php 75 0.068%
phpunit.xml.ci 74 0.067%
install.sh 72 0.065%
phpdox.xml.dist 72 0.065%
.dockerignore 71 0.064%
Connection.php 68 0.062%
Capfile 66 0.06%
include.php 65 0.059%
peridot.php 64 0.058%
Controller.php 63 0.057%
screenshot-1.png 63 0.057%
wp-cli.yml 63 0.057%
sample.php 63 0.057%
Cache.php 62 0.056%
deactivate.php 62 0.056%
.babelrc 62 0.056%
Guardfile 62 0.056%
class.pth 62 0.056%
_config.yml 61 0.055%
phpunit.phar 61 0.055%
couscous.yml 61 0.055%
.rmt.yml 61 0.055%
grumphp.yml 61 0.055%
ActiveRecord.php 60 0.054%
search.php 60 0.054%
codecov.yml 60 0.054%
phpunit 60 0.054%
header.php 59 0.054%
page.php 59 0.054%
.phpstorm.meta.php 59 0.054%
.htaccess.sample 58 0.053%
footer.php 58 0.053%
.eslintrc.json 58 0.053%
ext_typoscript_setup.txt 58 0.053%
icon.svg 58 0.053%
Collection.php 58 0.053%
test 57 0.052%
Mailer.php 57 0.052%
ezinfo.php 57 0.052%
.travis.php.ini 56 0.051%
campaignchain.yml 56 0.051%
.gitsplit.yml 56 0.051%
web.config 56 0.051%
single.php 55 0.05%
manifest.json 55 0.05%
404.php 55 0.05%
Message.php 54 0.049%
config.yml 54 0.049%
UPGRADE-2.4.md 54 0.049%
.travis.install 53 0.048%
.travis.key 53 0.048%
.hgignore 53 0.048%
AUTHORS.txt 53 0.048%
.dunitconfig 53 0.048%
Application.php 53 0.048%
.travis.env 53 0.048%
setup.php 52 0.047%
cli.php 52 0.047%
box.json.dist 52 0.047%
Events.php 52 0.047%
sonar-project.properties 52 0.047%
Session.php 52 0.047%
Asset.php 52 0.047%
main.php 52 0.047%
Server.php 51 0.046%
extension.json 50 0.045%
todo.md 50 0.045%
Api.php 50 0.045%
Parser.php 50 0.045%
Manager.php 50 0.045%
phprelease.ini 49 0.044%
.coke 49 0.044%
coverage-checker.php 49 0.044%
default-enable 48 0.044%
.csslintrc 48 0.044%
Router.php 48 0.044%
console.php 48 0.044%
Image.php 47 0.043%
phpunit.sh 47 0.043%
Gruntfile.coffee 47 0.043%
File.php 47 0.043%
index.js 47 0.043%
screenshot.jpg 47 0.043%
Autoloader.php 47 0.043%
.arcconfig 47 0.043%
.phpspec_cs 46 0.042%
wercker.yml 46 0.042%
template_map.php 46 0.042%
run-tests.sh 46 0.042%
essence.yml 46 0.042%
phinx.yml 46 0.042%
version.txt 45 0.041%
deploy.sh 45 0.041%
extension.php 45 0.041%
admin.php 45 0.041%
UPGRADE-3.0.md 45 0.041%
codeception.dist.yml 45 0.041%
phpunit.xml.travis 45 0.041%
gruntfile.js 45 0.041%
views.php 45 0.041%
Event.php 44 0.04%
makefile 44 0.04%
cacert.pem 44 0.04%
api.php 44 0.04%
ServiceProvider.php 43 0.039%
controller.php 42 0.038%
.State 42 0.038%
UPGRADE-2.0.md 42 0.038%
webpack.dll.js 42 0.038%
.modernizrrc 42 0.038%
webpack.test.js 42 0.038%
GUIDELINES.md 42 0.038%
webpack.dev.js 42 0.038%
webpack.prod.js 42 0.038%
Query.php 41 0.037%
ext_autoload.php 41 0.037%
ROADMAP.md 41 0.037%
.env.dist 41 0.037%
App.php 41 0.037%
version.php 41 0.037%
todo.txt 41 0.037%
phpspec.yml.ci 41 0.037%
Factory.php 41 0.037%
config.json 40 0.036%
_ide_helper.php 40 0.036%
elefant.json 40 0.036%
chkipper.json 39 0.035%
AssetBundle.php 39 0.035%
View.php 39 0.035%
php.ini 39 0.035%
User.php 39 0.035%
.atoum.travis.php 38 0.034%
install.txt 38 0.034%
Base.php 38 0.034%
update.php 38 0.034%
phpcs-ruleset.xml 38 0.034%
Repository.php 38 0.034%
shippable.yml 38 0.034%
CNAME 37 0.034%
makedoc.sh 37 0.034%
ActiveField.php 37 0.034%
runtests.sh 37 0.034%
screenshot-2.png 37 0.034%
Alert.php 36 0.033%
packages.json 36 0.033%
sidebar.php 36 0.033%
ActiveForm.php 36 0.033%
Test.php 36 0.033%
phar-stub.php 36 0.033%
.travis.composer.config.json 36 0.033%
class.ext_update.php 36 0.033%
VERSIONING.md 36 0.033%
API.md 35 0.032%
archive.php 35 0.032%
.travis.composer.php 35 0.032%
travis-php.ini 35 0.032%
package.ini 35 0.032%
ISSUE_TEMPLATE 35 0.032%
comments.php 34 0.031%
loader.php 34 0.031%
backmatter.md 34 0.031%
.atoum.bootstrap.php 34 0.031%
.nitpick.json 34 0.031%
.sami.php 34 0.031%
Button.php 34 0.031%
app.json 34 0.031%
boot.php 34 0.031%
package.php 33 0.03%
descriptor.php 33 0.03%
Form.php 33 0.03%
Route.php 33 0.03%
cs.sh 33 0.03%
run_tests.sh 33 0.03%
humans.txt 33 0.03%
UPGRADE 33 0.03%
.php_cs.php 32 0.029%
travis.yml 32 0.029%
Database.php 32 0.029%
Html.php 32 0.029%
.remarkrc 32 0.029%
Menu.php 32 0.029%
elixir.json 32 0.029%
Curl.php 32 0.029%
coverage.clover 32 0.029%
.bldr.yml 32 0.029%
Model.php 32 0.029%
Component.php 32 0.029%
phing.xml 32 0.029%
codesniffer.ruleset.xml 32 0.029%
Migration.php 31 0.028%
dynamicReturnTypeMeta.json 31 0.028%
test.txt 31 0.028%
composers.php 31 0.028%
Validator.php 31 0.028%
.phpdoc-md 31 0.028%
phpunit.hhvm.xml 31 0.028%
build.properties.dev 31 0.028%
example.png 31 0.028%
Container.php 31 0.028%
ini.php 30 0.027%
ActiveQuery.php 30 0.027%
.pullapprove.yml 30 0.027%
tests.php 30 0.027%
build 30 0.027%
Worker.php 30 0.027%
.csscomb.json 29 0.026%
phpmd.sh 29 0.026%
Uploader.php 29 0.026%
DEPRECATED.md 29 0.026%
phpmetrics.yml 29 0.026%
wp-config.php 29 0.026%
ext.php 29 0.026%
run.php 29 0.026%
.stickler.yml 29 0.026%
VERSION.md 29 0.026%
constants.php 29 0.026%
pom.xml 28 0.025%
infra.js 28 0.025%
build.properties.default 28 0.025%
config.php.dist 28 0.025%
settings.php 28 0.025%
.env.travis 28 0.025%
.travis.sh 28 0.025%
Assets.php 28 0.025%
tests.xml 28 0.025%
.tavis.yml 28 0.025%
Finder.php 28 0.025%
UPGRADE-1.1.md 27 0.024%
router.php 27 0.024%
phpunit.bootstrap.php 27 0.024%
DatePicker.php 27 0.024%
php.ini.sample 27 0.024%
common.php 27 0.024%
phpunit-bootstrap.php 27 0.024%
build.jenkins.xml 27 0.024%
CoreAsset.php 27 0.024%
.drone.yml 27 0.024%
load.php 27 0.024%
init.sh 27 0.024%
nitpick.json 26 0.024%
Logger.php 26 0.024%
package.js 26 0.024%
config.yml.dist 26 0.024%
Nav.php 26 0.024%
AUTHORS.md 26 0.024%
config.ini 26 0.024%
make-toc 26 0.024%
params.json 26 0.024%
Log.php 25 0.023%
Dropdown.php 25 0.023%
cron.php 25 0.023%
.user.ini 25 0.023%
git_push.sh 25 0.023%
FontAwesomeAsset.php 25 0.023%
npm-shrinkwrap.json 25 0.023%
phinx.php 25 0.023%
CREDITS.md 25 0.023%
infra.php 25 0.023%
INSTALL.txt 25 0.023%
docs.php 25 0.023%
apigen.yml 25 0.023%
Installer.php 25 0.023%
benchmark.php 25 0.023%
MomentAsset.php 25 0.023%
test.html 25 0.023%
Jenkinsfile 25 0.023%
.travis.install.sh 24 0.022%
translation.php 24 0.022%
TESTING.md 24 0.022%
.arclint 24 0.022%
index-test.php 24 0.022%
Upgrade.md 24 0.022%
deploy.php 24 0.022%
Http.php 24 0.022%
dependencies.ini 24 0.022%
koharness.php 24 0.022%
Dispatcher.php 24 0.022%
manifest.yml 24 0.022%
CodeOfConduct.rst 24 0.022%
Icon.php 24 0.022%
phpunit-ci.xml 23 0.021%
Filter.php 23 0.021%
CONTRIBUTORS 23 0.021%
Extension.php 23 0.021%
demo.html 23 0.021%
CREDITS.txt 23 0.021%
stub.php 23 0.021%
ext_icon.svg 23 0.021%
RMT 23 0.021%
version.md 23 0.021%
module-config.json 23 0.021%
nginx.conf.sample 23 0.021%
migrations.yml 23 0.021%
Core.php 23 0.021%
setup.sh 23 0.021%
callback.php 23 0.021%
screenshot-3.png 23 0.021%
locallang_db.xml 23 0.021%
prefill.php 22 0.02%
wp-config-sample.php 22 0.02%
UPGRADE-3.x.md 22 0.02%
di.yml 22 0.02%
base.php 22 0.02%
xmlrpc.php 22 0.02%
.version 22 0.02%
Auth.php 22 0.02%
Generator.php 22 0.02%
phpbench.json 22 0.02%
.php_cs_header 22 0.02%
runTests.sh 22 0.02%
.dreamfactory.php 22 0.02%
Configuration.php 22 0.02%
config-sample.php 21 0.019%
Select2Asset.php 21 0.019%
auth.json.sample 21 0.019%
ErrorHandler.php 21 0.019%
grunt-config.json.sample 21 0.019%
login.php 21 0.019%
Util.php 21 0.019%
package.json.sample 21 0.019%
.codecov.yml 21 0.019%
Gruntfile.js.sample 21 0.019%
GridView.php 21 0.019%
theme.json 21 0.019%
NEWS 20 0.018%
tcpdf.php 20 0.018%
Command.php 20 0.018%
apigen.conf 20 0.018%
rmt.json 20 0.018%
composer.yml 20 0.018%
assets.json 20 0.018%
nginx.conf 20 0.018%
gulpfile.babel.js 20 0.018%
Registry.php 20 0.018%
CKEditor.php 20 0.018%
phpunit_bootstrap.php 20 0.018%
config.example.php 20 0.018%
.travis.composer.json 20 0.018%
travis.ini 20 0.018%
Queue.php 20 0.018%
src.php 20 0.018%
Error.php 20 0.018%
Icon.png 20 0.018%
.composer-auth.json 20 0.018%
contributors.md 20 0.018%
.composer.json 19 0.017%
config.js 19 0.017%
command.php 19 0.017%
pre-commit 19 0.017%
.phpmd.xml 19 0.017%
Service.php 19 0.017%
Action.php 19 0.017%
requirements.txt 19 0.017%
jquery.js 19 0.017%
.appveyor.yml 19 0.017%
bootstrap.sh 19 0.017%
DB.php 19 0.017%
Template.php 19 0.017%
bootstrap-dev.php 19 0.017%
Map.php 19 0.017%
.travis_shell_after_success.sh 19 0.017%
post-install.md 19 0.017%
.scss-lint.yml 19 0.017%
NavBar.php 18 0.016%
build-pre-commit.xml 18 0.016%
wp-settings.php 18 0.016%
wp-signup.php 18 0.016%