-
Notifications
You must be signed in to change notification settings - Fork 5
/
02-files.txt
5013 lines (5013 loc) · 126 KB
/
02-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
7422 vendors, 65617 packages
read-me-first file 58725 89.5%
README.md 52557 80.097%
readme.md 3349 5.104%
Readme.md 520 0.792%
README 406 0.619%
README.markdown 402 0.613%
README.rst 251 0.383%
readme.txt 243 0.37%
README.txt 122 0.186%
README.MD 101 0.154%
NOTICE 84 0.128%
README.textile 63 0.096%
README.mdown 57 0.087%
Readme.rst 48 0.073%
DESCRIPTION 46 0.07%
NOTICE.txt 34 0.052%
NOTICE.md 25 0.038%
readme.markdown 17 0.026%
README.mkd 17 0.026%
README.html 16 0.024%
USAGE.md 14 0.021%
README.ru.md 14 0.021%
README_RU.md 12 0.018%
readme.MD 12 0.018%
README.ja.md 12 0.018%
README-GIT.md 12 0.018%
readme.html 11 0.017%
SUMMARY.md 11 0.017%
Readme.markdown 9 0.014%
README.asciidoc 9 0.014%
readme.png 8 0.012%
GETTING_STARTED.md 7 0.011%
README.md~ 7 0.011%
readme_ru.md 7 0.011%
README.en.md 6 0.009%
readme-ja.md 6 0.009%
README-ru.md 6 0.009%
README-RU.md 6 0.009%
ReadMe.md 6 0.009%
readme.rst 6 0.009%
README.dist.md 5 0.008%
readme.md~ 5 0.008%
README_spanish.md 5 0.008%
README-ID.md 5 0.008%
readmegen.yml 5 0.008%
README_CN.md 5 0.008%
README-zh.md 5 0.008%
DEVELOPMENT_README.md 5 0.008%
README.org 4 0.006%
README.TXT 4 0.006%
README_ru.md 4 0.006%
README_RUS.md 4 0.006%
README-ja.md 4 0.006%
README_ExportaFacil.md 4 0.006%
README_Dev.md 4 0.006%
README_zh_CN.md 3 0.005%
Readme.txt 3 0.005%
README_EN.md 3 0.005%
README.fr.md 3 0.005%
readme_en.txt 3 0.005%
readme_ru.txt 3 0.005%
README.mkdn 3 0.005%
getting-started.html 3 0.005%
readme 3 0.005%
README.zh-CN.md 3 0.005%
README.sublime-workspace 3 0.005%
readme.mdown 3 0.005%
README_zh.md 3 0.005%
README.git 3 0.005%
Notice.php 3 0.005%
usage.php 3 0.005%
README_en.md 3 0.005%
README-DEV.md 3 0.005%
readme.dcy 2 0.003%
READMED.MD 2 0.003%
readme.textile 2 0.003%
README.pdf 2 0.003%
README.md.template 2 0.003%
README.adoc 2 0.003%
README.rdoc 2 0.003%
description.json 2 0.003%
README.RU.md 2 0.003%
readme_en.md 2 0.003%
README_Correios.md 2 0.003%
README_ClearsaleTotal.md 2 0.003%
README_ClearsaleStart.md 2 0.003%
Description.php 2 0.003%
readme_rus.md 2 0.003%
readme.mkd 2 0.003%
description 2 0.003%
readme-pt_BR.md 2 0.003%
readme.mustache.md 2 0.003%
USAGE 2 0.003%
readmegen 2 0.003%
README.tpl 2 0.003%
README-pt_BR.md 2 0.003%
readme.wiki 2 0.003%
README.ZH.MD 2 0.003%
README.zh.md 2 0.003%
README-FROM-SCRATCH.md 2 0.003%
README.Debian 2 0.003%
htmLawed_README.txt 2 0.003%
htmLawed_README.htm 2 0.003%
google-analytics-README.md 2 0.003%
README_1.md 2 0.003%
license or copyright file 38223 58.3%
LICENSE 27624 42.099%
LICENSE.md 4920 7.498%
LICENSE.txt 2522 3.844%
license.md 775 1.181%
LICENCE 434 0.661%
COPYING 326 0.497%
license.txt 285 0.434%
LICENCE.md 169 0.258%
license 113 0.172%
LICENCE.txt 90 0.137%
licence.md 85 0.13%
LICENSE.TXT 83 0.126%
MIT-LICENSE.txt 73 0.111%
COPYING.txt 58 0.088%
COPYING.LESSER 55 0.084%
LICENSE_AFL.txt 44 0.067%
MIT-LICENSE 39 0.059%
License.txt 36 0.055%
COPYRIGHT 35 0.053%
GPL-LICENSE.txt 28 0.043%
LICENSE-MIT 26 0.04%
licence 24 0.037%
License 18 0.027%
licence.txt 17 0.026%
UNLICENSE 15 0.023%
COPYRIGHT.md 12 0.018%
LICENSE.MIT 12 0.018%
LICENSE-AGPL.md 11 0.017%
LICENSE-COMMERCIAL-WEBSITE.md 11 0.017%
LICENSE-COMMERCIAL-SAAS.md 11 0.017%
LICENSE-COMMERCIAL-WEBSITES.md 11 0.017%
License.md 11 0.017%
COPYING.md 10 0.015%
LICENSE-2.0.txt 10 0.015%
COPYNG 10 0.015%
LICENSE-COMMERCIAL-WEBSITES.mkd 9 0.014%
LICENSE-COMMERCIAL-SAAS.mkd 9 0.014%
LICENSE-AGPL.mkd 9 0.014%
Licence.txt 9 0.014%
LICENSE-COMMERCIAL-WEBSITE.mkd 9 0.014%
LISENCE 8 0.012%
gpl-3.0.txt 8 0.012%
LICENSE.MD 7 0.011%
lgpl-3.0.txt 6 0.009%
LICENSE-GPL 6 0.009%
LICENSE-MIT.md 6 0.009%
COPYRIGHT.txt 6 0.009%
license-mit.txt 5 0.008%
LICENSE.LESSER 5 0.008%
LICENSE-COMMERCIAL-WEBSITES.html 5 0.008%
LICENSE-COMMERCIAL-SAAS.html 5 0.008%
LICENSE-AGPL.html 5 0.008%
LICENSE-COMMERCIAL-WEBSITE.html 5 0.008%
.licenser.yml 4 0.006%
MIT-LICENCE 4 0.006%
LICENSE_tr 4 0.006%
LICENSE.LGPL 4 0.006%
LICENSE_YAML 3 0.005%
LICENSE-MIT.txt 3 0.005%
SYMFONY LICENSE 3 0.005%
_LICENSE.txt 3 0.005%
GPL-LICENSE 3 0.005%
LICENSE.html 3 0.005%
LICENSE.BSD 3 0.005%
ZEND-LICENSE.md 3 0.005%
license.MD 3 0.005%
GNU Lesser General Public License v2.1 - GNU Project - Free Software Foundation.html 3 0.005%
eula_en.txt 2 0.003%
eula.txt 2 0.003%
gpl.txt 2 0.003%
LICENSE-APACHE 2 0.003%
LICENSE-numbro 2 0.003%
LICENSE-Numeraljs 2 0.003%
license.html 2 0.003%
MIT.LICENSE 2 0.003%
Copyright.txt 2 0.003%
GPLv3.txt 2 0.003%
agpl-3.0.txt 2 0.003%
license.php 2 0.003%
CheckLicense.php 2 0.003%
agpl.txt 2 0.003%
LICENSE_LGPL.txt 2 0.003%
LICENSE.GPL2 2 0.003%
license.mustache 2 0.003%
LICENSE-Apache 2 0.003%
BLUESPICE-LICENCE 2 0.003%
LICANSE 2 0.003%
LICENCE.rst 2 0.003%
LICENSE_SOA 2 0.003%
LICENSE_SENTINEL 2 0.003%
COPYING.LGPL 2 0.003%
COPYING.GPL 2 0.003%
ASF-LICENSE-2.0 2 0.003%
other files 263955
composer.json 63988 97.517%
.gitignore 46475 70.828%
.travis.yml 24128 36.771%
phpunit.xml.dist 13261 20.21%
phpunit.xml 10122 15.426%
composer.lock 8919 13.593%
.gitattributes 7673 11.694%
CHANGELOG.md 5807 8.85%
.scrutinizer.yml 5731 8.734%
.editorconfig 4707 7.173%
CONTRIBUTING.md 4208 6.413%
Module.php 2254 3.435%
.php_cs 2134 3.252%
package.json 1912 2.914%
.coveralls.yml 1677 2.556%
build.xml 1580 2.408%
.styleci.yml 1367 2.083%
index.php 1141 1.739%
_config.php 1096 1.67%
Makefile 1087 1.657%
bower.json 988 1.506%
phpcs.xml 908 1.384%
.codeclimate.yml 864 1.317%
.htaccess 778 1.186%
gulpfile.js 686 1.045%
bootstrap.php 660 1.006%
Gruntfile.js 645 0.983%
phpspec.yml 607 0.925%
CONDUCT.md 562 0.856%
.bowerrc 511 0.779%
start.php 492 0.75%
codeception.yml 490 0.747%
autoload_classmap.php 479 0.73%
manifest.xml 443 0.675%
autoload.php 429 0.654%
phpunit.php 415 0.632%
phpmd.xml 393 0.599%
.gitmodules 393 0.599%
VERSION 369 0.562%
composer.phar 329 0.501%
changelog.md 328 0.5%
UPGRADE.md 328 0.5%
example.php 323 0.492%
Vagrantfile 312 0.475%
.env.example 305 0.465%
ext_emconf.php 275 0.419%
CHANGELOG 275 0.419%
artisan 272 0.415%
server.php 266 0.405%
test.php 266 0.405%
registration.php 264 0.402%
appveyor.yml 257 0.392%
Bootstrap.php 256 0.39%
logo.png 248 0.378%
package.xml 246 0.375%
phpspec.yml.dist 238 0.363%
ext_localconf.php 234 0.357%
modman 225 0.343%
circle.yml 223 0.34%
autoload_register.php 223 0.34%
autoload_function.php 219 0.334%
index.html 219 0.334%
.project 217 0.331%
.jshintrc 214 0.326%
config.php 212 0.323%
behat.yml 211 0.322%
phpdoc.dist.xml 206 0.314%
box.json 191 0.291%
ext_tables.php 191 0.291%
docker-compose.yml 188 0.287%
.sensiolabs.yml 188 0.287%
CHANGES.txt 186 0.283%
TODO.md 185 0.282%
behat.yml.dist 183 0.279%
ruleset.xml 179 0.273%
Dockerfile 175 0.267%
module.json 172 0.262%
mkdocs.yml 164 0.25%
build.default.properties 163 0.248%
ext_icon.gif 161 0.245%
Exception.php 157 0.239%
apigen.neon 154 0.235%
.atoum.php 154 0.235%
init.php 149 0.227%
CHANGELOG.txt 146 0.223%
.DS_Store 145 0.221%
.check-author.yml 145 0.221%
contributing.md 144 0.219%
PULL_REQUEST_TEMPLATE.md 141 0.215%
config.xml 140 0.213%
code-of-conduct.md 134 0.204%
ride.json 134 0.204%
.buildpath 132 0.201%
yii.bat 131 0.2%
functions.php 131 0.2%
build.properties 130 0.198%
ext_tables.sql 129 0.197%
CHANGES.md 128 0.195%
phpunit.travis.xml 123 0.187%
.semver 120 0.183%
requirements.php 117 0.178%
phpdoc.xml 117 0.178%
component.json 117 0.178%
activate.php 115 0.175%
CODE_OF_CONDUCT.md 112 0.171%
Gulpfile.js 112 0.171%
CHANGE.md 111 0.169%
sami.php 111 0.169%
ChangeLog 109 0.166%
autoloader.php 109 0.166%
Gemfile 108 0.165%
phpcs.xml.dist 105 0.16%
puli.json 105 0.16%
.bootstrap.atoum.php 104 0.158%
screenshot.png 103 0.157%
ext_conf_template.txt 102 0.155%
ChangeLog.md 101 0.154%
.formatter.yml 100 0.152%
manifest.php 100 0.152%
helpers.php 100 0.152%
favicon.ico 98 0.149%
Provider.php 98 0.149%
ISSUE_TEMPLATE.md 97 0.148%
logo.gif 97 0.148%
version 94 0.143%
config.rb 91 0.139%
CREDITS 91 0.139%
extension.xml 91 0.139%
.gush.yml 89 0.136%
Client.php 89 0.136%
INSTALL.md 88 0.134%
phpcs.ruleset.xml 88 0.134%
travis.php.ini 87 0.133%
.eslintrc 85 0.13%
style.css 84 0.128%
build.sh 84 0.128%
CONTRIBUTORS.md 83 0.126%
CHANGELOG-1.0.md 82 0.125%
yii 81 0.123%
.infra.json 81 0.123%
Doxyfile 80 0.122%
RoboFile.php 80 0.122%
ext_icon.png 78 0.119%
Widget.php 77 0.117%
phpmd.ruleset.xml 77 0.117%
Plugin.php 76 0.116%
VERSION.txt 76 0.116%
phpmd.xml.dist 75 0.114%
plugin.php 75 0.114%
language.xml 74 0.113%
build.php 73 0.111%
install.php 73 0.111%
generate-api.sh 72 0.11%
AUTHORS 71 0.108%
release.md 71 0.108%
demo.php 71 0.108%
icon.png 70 0.107%
phpunit.xml.ci 70 0.107%
autoload.php.dist 70 0.107%
console 69 0.105%
.gitreview 68 0.104%
UPGRADING.md 68 0.104%
.npmignore 67 0.102%
changelog.yml 66 0.101%
Gemfile.lock 66 0.101%
Changelog.md 66 0.101%
TODO 64 0.098%
travis.phpunit.xml 64 0.098%
karma.conf.js 64 0.098%
changelog.txt 63 0.096%
phpdox.xml 61 0.093%
CHANGELOG-2.0.md 61 0.093%
robots.txt 61 0.093%
.eslintignore 61 0.093%
plugin.xml 61 0.093%
class.pth 61 0.093%
init.bat 60 0.091%
deactivate.php 60 0.091%
init 60 0.091%
.php_cs.dist 57 0.087%
.gitlab-ci.yml 57 0.087%
CONTRIBUTING.markdown 57 0.087%
campaignchain.yml 56 0.085%
.mailmap 56 0.085%
webpack.config.js 55 0.084%
ezinfo.php 54 0.082%
.jshintignore 53 0.081%
provides.json 53 0.081%
.gitsplit.yml 53 0.081%
phpunit.dist.xml 52 0.079%
.rmt.yml 52 0.079%
peridot.php 52 0.079%
.travis.install 51 0.078%
.travis.key 51 0.078%
routes.php 51 0.078%
.travis.env 51 0.078%
.jscsrc 50 0.076%
.hhconfig 50 0.076%
humbug.json.dist 49 0.075%
.dunitconfig 49 0.075%
.htaccess.sample 48 0.073%
CHANGELOG-0.5.md 47 0.072%
Config.php 47 0.072%
couscous.yml 47 0.072%
init_autoloader.php 46 0.07%
manifest.json 46 0.07%
.eslintrc.json 46 0.07%
.travis.php.ini 46 0.07%
.dockerignore 46 0.07%
phprelease.ini 45 0.069%
essence.yml 45 0.069%
Response.php 45 0.069%
cli-config.php 44 0.067%
extension.json 44 0.067%
template_map.php 44 0.067%
.env 44 0.067%
phpci.yml 44 0.067%
Controller.php 44 0.067%
extension.php 43 0.066%
Capfile 43 0.066%
Request.php 43 0.066%
INSTALL 43 0.066%
Rakefile 43 0.066%
contributors.txt 42 0.064%
.State 42 0.064%
views.php 42 0.064%
.phpspec_cs 42 0.064%
Collection.php 42 0.064%
.modernizrrc 41 0.062%
ext_typoscript_setup.txt 41 0.062%
webpack.test.js 41 0.062%
webpack.prod.js 41 0.062%
GUIDELINES.md 41 0.062%
.phpstorm.meta.php 41 0.062%
webpack.dev.js 41 0.062%
yarn.lock 41 0.062%
webpack.dll.js 41 0.062%
ServiceProvider.php 40 0.061%
elefant.json 40 0.061%
.coke 40 0.061%
ActiveRecord.php 40 0.061%
history.md 40 0.061%
screenshot-1.png 40 0.061%
UPGRADE-2.2.md 40 0.061%
install.sh 40 0.061%
screenshot.jpg 40 0.061%
phpunit.xml.travis 40 0.061%
.hgignore 40 0.061%
Asset.php 39 0.059%
codecov.yml 39 0.059%
Cache.php 39 0.059%
.atoum.travis.php 38 0.058%
codeception.dist.yml 38 0.058%
test 38 0.058%
test.sh 38 0.058%
grumphp.yml 38 0.058%
Connection.php 38 0.058%
setup.php 38 0.058%
scrutinizer.yml 37 0.056%
cli.php 37 0.056%
chkipper.json 37 0.056%
include.php 37 0.056%
AUTHORS.txt 37 0.056%
Manager.php 37 0.056%
phpunit.sh 37 0.056%
phpdox.xml.dist 37 0.056%
change.xml 36 0.055%
UPGRADE-2.3.md 36 0.055%
UPGRADE-3.0.md 35 0.053%
CHANGELOG-5.3.md 35 0.053%
RELEASE 35 0.053%
phpspec.yml.ci 35 0.053%
CHANGELOG-5.2.md 35 0.053%
Event.php 34 0.052%
AssetBundle.php 34 0.052%
.travis.composer.config.json 34 0.052%
AutoloadExample.php 34 0.052%
backmatter.md 34 0.052%
box.json.dist 34 0.052%
app.php 34 0.052%
Events.php 34 0.052%
search.php 34 0.052%
descriptor.php 33 0.05%
Base.php 33 0.05%
default-enable 33 0.05%
Procfile 33 0.05%
releases.json 33 0.05%
Mailer.php 33 0.05%
File.php 33 0.05%
Repository.php 33 0.05%
uninstall.php 33 0.05%
Parser.php 32 0.049%
page.php 32 0.049%
.arcconfig 32 0.049%
deploy.sh 32 0.049%
VERSIONING.md 32 0.049%
examples.php 32 0.049%
UPGRADE-2.0.md 32 0.049%
.remarkrc 32 0.049%
run-tests.sh 31 0.047%
.travis.composer.php 31 0.047%
config.yml 31 0.047%
header.php 31 0.047%
phing.xml 31 0.047%
CONTRIBUTING 31 0.047%
coverage-checker.php 31 0.047%
404.php 31 0.047%
phpcs-ruleset.xml 31 0.047%
CONTRIBUTE.md 31 0.047%
admin.php 31 0.047%
single.php 31 0.047%
wp-cli.yml 30 0.046%
Gruntfile.coffee 30 0.046%
phpunit.phar 30 0.046%
footer.php 30 0.046%
API.md 30 0.046%
Server.php 30 0.046%
.phpdoc-md 30 0.046%
.babelrc 30 0.046%
Router.php 30 0.046%
.bldr.yml 30 0.046%
.nitpick.json 30 0.046%
Image.php 30 0.046%
phar-stub.php 29 0.044%
.php_cs.php 29 0.044%
cs.sh 29 0.044%
Session.php 29 0.044%
ini.php 29 0.044%
makefile 29 0.044%
DEPRECATED.md 28 0.043%
build.properties.default 28 0.043%
sample.php 28 0.043%
package.ini 28 0.043%
gruntfile.js 28 0.043%
.csslintrc 28 0.043%
travis-php.ini 28 0.043%
Api.php 28 0.043%
controller.php 28 0.043%
Message.php 28 0.043%
VERSION.md 28 0.043%
.sami.php 28 0.043%
phpmd.sh 28 0.043%
Factory.php 27 0.041%
build.jenkins.xml 27 0.041%
.tavis.yml 27 0.041%
version.php 27 0.041%
phpunit 27 0.041%
.pullapprove.yml 27 0.041%
Query.php 27 0.041%
composers.php 27 0.041%
todo.md 27 0.041%
web.config 27 0.041%
update.php 26 0.04%
makedoc.sh 26 0.04%
shippable.yml 26 0.04%
phinx.yml 26 0.04%
index.js 26 0.04%
wercker.yml 26 0.04%
ext_autoload.php 26 0.04%
.stickler.yml 26 0.04%
Guardfile 25 0.038%
tests.xml 25 0.038%
ISSUE_TEMPLATE 25 0.038%
make-toc 25 0.038%
phpmetrics.yml 25 0.038%
composer.json~ 25 0.038%
.csscomb.json 25 0.038%
Html.php 25 0.038%
dependencies.ini 24 0.037%
ROADMAP.md 24 0.037%
Application.php 24 0.037%
Container.php 24 0.037%
RELEASE-NOTES.md 24 0.037%
App.php 24 0.037%
CHANGES 24 0.037%
infra.js 24 0.037%
module-config.json 23 0.035%
User.php 23 0.035%
FontAwesomeAsset.php 23 0.035%
Component.php 23 0.035%
Autoloader.php 23 0.035%
.env.dist 23 0.035%
translation.php 23 0.035%
common.php 23 0.035%
ActiveField.php 23 0.035%
todo.txt 23 0.035%
sidebar.php 23 0.035%
codesniffer.ruleset.xml 23 0.035%
ext.php 23 0.035%
UPGRADE-1.1.md 23 0.035%
console.php 22 0.034%
.dreamfactory.php 22 0.034%
CodeOfConduct.rst 22 0.034%
comments.php 22 0.034%
Route.php 22 0.034%
CoreAsset.php 22 0.034%
screenshot-2.png 22 0.034%
elixir.json 22 0.034%
nitpick.json 22 0.034%
config.json 22 0.034%
api.php 22 0.034%
UPGRADE 22 0.034%
package.php 21 0.032%
RMT 21 0.032%
phpunit-ci.xml 21 0.032%
.atoum.bootstrap.php 21 0.032%
infra.php 21 0.032%
dynamicReturnTypeMeta.json 21 0.032%
CHANGELOG-1.1.md 21 0.032%
config.php.dist 21 0.032%
ActiveQuery.php 21 0.032%
phpunit.bootstrap.php 21 0.032%
koharness.php 21 0.032%
di.yml 21 0.032%
Jenkinsfile 21 0.032%
manifest.yml 21 0.032%
archive.php 20 0.03%
sonar-project.properties 20 0.03%
Migration.php 20 0.03%
ActiveForm.php 20 0.03%
rmt.json 20 0.03%
.version 20 0.03%
boot.php 20 0.03%
Menu.php 20 0.03%
Form.php 20 0.03%
phpunit-bootstrap.php 20 0.03%
Worker.php 20 0.03%
class.ext_update.php 20 0.03%
bootstrap-dev.php 19 0.029%
UPGRADE-2.4.md 19 0.029%
humans.txt 19 0.029%
composer.yml 19 0.029%
phpunit.hhvm.xml 19 0.029%
php.ini 19 0.029%
post-install.md 19 0.029%
Alert.php 19 0.029%
apigen.yml 19 0.029%
runtests.sh 19 0.029%
.php_cs_header 19 0.029%
example.png 19 0.029%
src.php 19 0.029%
CHANGELOG-3.0.md 19 0.029%
apigen.conf 18 0.027%
Database.php 18 0.027%
theme.json 18 0.027%
updates.php 18 0.027%
Core.php 18 0.027%
.travis.install.sh 18 0.027%
stub.php 18 0.027%
Installer.php 18 0.027%
build.properties.dev 18 0.027%
Http.php 18 0.027%
router.php 18 0.027%
.appveyor.yml 18 0.027%
php.ini.sample 18 0.027%
cacert.pem 18 0.027%
load.php 18 0.027%
main.php 18 0.027%
.composer-auth.json 18 0.027%
Model.php 18 0.027%
jfusion.xml 18 0.027%
coverage.clover 17 0.026%
TESTING.md 17 0.026%
tasks 17 0.026%
View.php 17 0.026%
test-cov 17 0.026%
.user.ini 17 0.026%
MomentAsset.php 17 0.026%
assets.json 17 0.026%
.travis.sh 17 0.026%
Validator.php 17 0.026%
CHANGELOG-3.1.md 17 0.026%
Nav.php 17 0.026%
.composer.json 17 0.026%
bootstrap.hh 17 0.026%
build.local.xml 17 0.026%
CNAME 17 0.026%
bob_config.php 17 0.026%
.remarkignore 17 0.026%
nginx.conf.sample 17 0.026%
locallang_db.xml 17 0.026%
Logger.php 16 0.024%
AUTHORS.md 16 0.024%
.travis-phpunit.xml 16 0.024%
contributors.md 16 0.024%
Icon.png 16 0.024%
Finder.php 16 0.024%
Command.php 16 0.024%
GridView.php 16 0.024%
Select2Asset.php 16 0.024%
migrations.yml 16 0.024%
travis.ini 16 0.024%
phinx.php 16 0.024%
autoload.json 16 0.024%
mcapi_sandbox_key.p12 16 0.024%
fig.yml 16 0.024%
xvengine.json 16 0.024%
constants.php 16 0.024%
app.json 16 0.024%
Registry.php 16 0.024%
version.txt 16 0.024%
CHANGELOG-3.2.md 16 0.024%
phpcompatinfo.json 16 0.024%
.coverall.yml 16 0.024%
npm-shrinkwrap.json 16 0.024%
base.php 15 0.023%
send_sdk_ci_1_sandbox.p12 15 0.023%
build-pre-commit.xml 15 0.023%
send_sdk_ci_3_sandbox.p12 15 0.023%
send_sdk_ci_2_sandbox.p12 15 0.023%
HISTORY.md 15 0.023%
Upgrade.md 15 0.023%
phpunit-coverage.xml 15 0.023%
INSTALL.txt 15 0.023%
UPGRADE-3.x.md 15 0.023%
.varci.yml 15 0.023%
pom.xml 15 0.023%
phpbench.json 15 0.023%
.travis.coverage.sh 15 0.023%
Icon.php 15 0.023%
package.json.sample 15 0.023%
grunt-config.json.sample 15 0.023%
Button.php 15 0.023%
Error.php 15 0.023%
CHANGELOG-0.x.md 15 0.023%
.scrunitizer.yml 15 0.023%
auth.json.sample 15 0.023%
Gruntfile.js.sample 15 0.023%
Json.php 15 0.023%
sage.config 15 0.023%
testrunner.yml 15 0.023%
Queue.php 15 0.023%
run-test 15 0.023%
Test.php 15 0.023%
run_tests.sh 15 0.023%
loader.php 15 0.023%
clover.xml 15 0.023%
DEPS 15 0.023%
.yo-rc.json 15 0.023%
appveyor.bat 14 0.021%
QueryBuilder.php 14 0.021%
review.txt 14 0.021%
DatePicker.php 14 0.021%
UPGRADE-4.0.md 14 0.021%
test-config.yml.dist 14 0.021%
CKEditor.php 14 0.021%
tests.md 14 0.021%
GruntFile.js 14 0.021%
ErrorHandler.php 14 0.021%
.travis.composer.json 14 0.021%
COPYING LESSER 14 0.021%
DEVELOPMENT.md 14 0.021%
.travis.composer.config.json.enc 14 0.021%
run-tests 14 0.021%
make.bat 14 0.021%
benchmark.php 14 0.021%
.docheader 14 0.021%
Gentry.json 14 0.021%
styler.php_cs 14 0.021%
Generator.php 14 0.021%
Filter.php 14 0.021%
herbert.config.php 14 0.021%
Changelog 13 0.02%
settings.php 13 0.02%
cron.php 13 0.02%
config.ini 13 0.02%
phpunit.local.xml 13 0.02%
phpmd-pre-commit.xml 13 0.02%
UPGRADE-2.1.md 13 0.02%
Extension.php 13 0.02%
run.sh 13 0.02%
deploy.php 13 0.02%
.mtr 13 0.02%
MF-UPGRADE-3.0.md 13 0.02%
code_of_conduct.md 13 0.02%
Assets.php 13 0.02%
locallang.xml 13 0.02%
Console.php 13 0.02%
humbug.json 13 0.02%
build 13 0.02%
split.json 13 0.02%
Util.php 13 0.02%
run-tests-coverage 13 0.02%
recipe.php 13 0.02%
Dispatcher.php 13 0.02%
lab.config 13 0.02%
pre-commit 13 0.02%
Filesystem.php 13 0.02%
.php_cs.cache 13 0.02%
Bundle.php 13 0.02%
CREDITS.md 13 0.02%
blok.php 13 0.02%
gulpfile.babel.js 13 0.02%
DateTimePicker.php 13 0.02%
.drone.yml 13 0.02%
helper.php 13 0.02%
Configuration.php 13 0.02%
docker-compose.yml.dist 13 0.02%
_config.yml 13 0.02%
version.md 13 0.02%
Markdown.php 13 0.02%
install.xml 13 0.02%
Uploader.php 13 0.02%
changelog 12 0.018%
message.php 12 0.018%
_ide_helper.php 12 0.018%
.env.travis 12 0.018%
model.php 12 0.018%
test_build 12 0.018%
config.js 12 0.018%
tester.php 12 0.018%
Log.php 12 0.018%
index-test.php 12 0.018%
doxygen.conf 12 0.018%
Platform.php 12 0.018%
Dropdown.php 12 0.018%
ext_typoscript_constants.txt 12 0.018%
CONTRIBUTING.mdown 12 0.018%
Template.php 12 0.018%
peridot.hh 12 0.018%
DateTimePickerAsset.php 12 0.018%
SchemaManager.php 12 0.018%
Curl.php 12 0.018%
run-me.bat 12 0.018%
PSR2Tabs.xml 12 0.018%
codesniffer 12 0.018%
make-unit 12 0.018%
demo.html 12 0.018%
.arclint 12 0.018%
install.txt 12 0.018%
jquery.js 12 0.018%
Action.php 12 0.018%
.blackfire.yml 12 0.018%
test.html 12 0.018%
tests.php 12 0.018%
Select2.php 12 0.018%
Taskfile 12 0.018%
c3.php 12 0.018%
RELEASE.md 12 0.018%
cache.properties 11 0.017%
Environment.php 11 0.017%
Token.php 11 0.017%
CONTRIBUTORS 11 0.017%
qa-tools.json 11 0.017%
searchform.php 11 0.017%
wp-config.php 11 0.017%
Kernel.php 11 0.017%
Loader.php 11 0.017%
.pharignore 11 0.017%
.stylelintrc 11 0.017%
Theme.php 11 0.017%
release.sh 11 0.017%
Auth.php 11 0.017%
cli 11 0.017%
.release.json 11 0.017%
screenshot-3.png 11 0.017%
compile.sh 11 0.017%
.nvmrc 11 0.017%
phpspec.hhvm.yml 11 0.017%
CHANGE.MD 11 0.017%
UPDATE.md 11 0.017%
image.php 11 0.017%
view.php 11 0.017%
chayka.json 11 0.017%
samson.php 11 0.017%
ManagerRegistry.php 11 0.017%
requirements.txt 11 0.017%
content-none.php 11 0.017%
permissions.php 11 0.017%
Arr.php 11 0.017%
entrypoint.sh 11 0.017%
install.md 11 0.017%
run-travis 11 0.017%
definition.json 11 0.017%
logo.svg 11 0.017%
runTests.sh 11 0.017%
devaloka.php 11 0.017%
NavBar.php 11 0.017%
services.yml 10 0.015%
.codecov.yml 10 0.015%
run.php 10 0.015%
packages.json 10 0.015%
Service.php 10 0.015%
nginx.conf 10 0.015%
travis.yml 10 0.015%
bootstrap.php.dist 10 0.015%
build.properties.dist 10 0.015%
UPGRADE-3.1.md 10 0.015%
InputWidget.php 10 0.015%
config.sample.php 10 0.015%
UEditorAsset.php 10 0.015%
phpspec.ci.yml 10 0.015%
Document.php 10 0.015%
aoe-logo.png 10 0.015%
DateRangePicker.php 10 0.015%
typecheck 10 0.015%
Starter.php 10 0.015%
UPGRADE-3.2.md 10 0.015%
CHANGELOG.MD 10 0.015%
testing.md 10 0.015%
container.yml 10 0.015%
dev.phpunit.xml 10 0.015%
preview.png 10 0.015%
icon.svg 10 0.015%
CHANGELOG-2.1.md 10 0.015%
phpspec-ci.yml 10 0.015%
module.properties 10 0.015%
bugfree.json 10 0.015%
tutorial.php 10 0.015%
phpunit-ci.xml.dist 10 0.015%
UploadBehavior.php 10 0.015%
runtests 10 0.015%
Paginator.php 10 0.015%
get.php 10 0.015%
config.test.php 10 0.015%
configuration.php 10 0.015%
Context.php 10 0.015%
module.conf.yaml 10 0.015%
php-semver-checker-git.yml.dist 10 0.015%
CacheInterface.php 10 0.015%
apigen.yaml 10 0.015%
.bldr @ cfcefe7 10 0.015%
content.php 10 0.015%
Map.php 10 0.015%
module.yaml 10 0.015%
CREDITS.txt 10 0.015%
Search.php 10 0.015%
CONTRIBUTORS.txt 10 0.015%
Translator.php 10 0.015%
ClassLoader.php 10 0.015%
config.yml.dist 10 0.015%
codecept.phar 9 0.014%
CHANGELOG-1.2.md 9 0.014%
ActionColumn.php 9 0.014%
docs.json 9 0.014%
common.inc.php 9 0.014%
portkey.json 9 0.014%
CKEditorAsset.php 9 0.014%
.hedron.yml 9 0.014%
doc.php 9 0.014%
Pagination.php 9 0.014%
TestCase.php 9 0.014%
CONTRIBUTING.textile 9 0.014%
CropperAsset.php 9 0.014%
Modal.php 9 0.014%
Serializer.php 9 0.014%
ScriptHandler.php 9 0.014%
coverage.xml 9 0.014%
sami_docs.php 9 0.014%
UserModule.php 9 0.014%
Sms.php 9 0.014%
index.tpl 9 0.014%
Result.php 9 0.014%
DatePickerAsset.php 9 0.014%
Version.php 9 0.014%
.hgtags 9 0.014%
Builder.php 9 0.014%
TODO.txt 9 0.014%
container.php 9 0.014%
params.json 9 0.014%
TinyMceAsset.php 9 0.014%
globals.php 9 0.014%
Url.php 9 0.014%
Storage.php 9 0.014%
phpunit.xml-dist 9 0.014%
pre-commit.sh 9 0.014%
.travis.yml.dist 9 0.014%
docblox.dist.xml 9 0.014%
install.sql 9 0.014%
theme.xml 9 0.014%
pearfarm.spec 9 0.014%
example.html 9 0.014%
DefaultSettings.php 9 0.014%
form.php 9 0.014%
TreeView.php 9 0.014%
.bumpversion.cfg 9 0.014%
prepare.php 9 0.014%
todo 9 0.014%
documentation.txt 9 0.014%
Currency.php 9 0.014%
.phpmd.xml 9 0.014%
Cookie.php 9 0.014%
author.php 9 0.014%
package.js 9 0.014%
Settings.php 9 0.014%
version-check.json 9 0.014%
package.xml.tmpl 9 0.014%
ChangeLog.markdown 9 0.014%
debug-test.php 8 0.012%
DB.php 8 0.012%
push-tests 8 0.012%
kahlan-config.php 8 0.012%
run-tests.php 8 0.012%
file-header.phps 8 0.012%
update.sh 8 0.012%
.cloak.toml 8 0.012%
.travis_shell_after_success.sh 8 0.012%
cover.png 8 0.012%
AdminLteAsset.php 8 0.012%