-
-
Notifications
You must be signed in to change notification settings - Fork 817
/
contributor-key.yml
1851 lines (1298 loc) · 38.1 KB
/
contributor-key.yml
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
# This is a key of GitHub handles to real contributors' names and organizations,
# to be used for preparing credits for release notes.
---
- github : acrollet
name : Adrian Rollett
organization: Roomify, LLC
- github : adixon
name : Alan Dixon
organization: Blackfly Solutions
- github : adriano66
organization: Future Processing
name : Adrian
- name : Alexander Ferreras
- github : agh1
name : Andie Hunt
organization: AGH Strategies
- github : agileware
name : Agileware Team
organization: Agileware
- github : agileware-dev
name : Agileware Team
organization: Agileware
- github : agileware-fj
name : Francis Whittle
organization: Agileware
- github : agileware-iris
name : Iris
organization: Agileware
- github : agileware-justin
name : Justin Freeman
organization: Agileware
- github : agileware-pengyi
name : Pengyi Zhang
organization: Agileware
- github : ahed-compucorp
name : Ahed Eid
organization: CompuCorp
- github : AHowiller
name : Andreas Howiller
organization: civiservice.de
- github : ajdavis
name : A. Jesse Jiryu Davis
organization: MongoDB
- github : ajesamson
name : Samson Alajede
- github : AkA84
name : Alessandro Verdura
organization: CompuCorp
- github : akosgarai
name : Akos Garai
- github : AlainBenbassat
name : Alain Benbassat
organization: Business & Code
- github : alarmingcod
- github : albionbrown
name : Josh Brown
organization: CEPR
- name : Alex Lee
organization: GMCVO Databases
- github : alexmarketaccess
name : Alex Block
- github : alexymik
name : Alexy Mikhailichenko
- github : alifrumin
name : Alice Frumin
organization: AGH Strategies
- github : allinappli
name : ALL IN APPLI
- github : allinappliadmin
name : ALL IN APPLI admin
- github : Anatoleallain
name : Anatole
- github : andyburnsco
name : Andy Burns
- github : anemirovsky
name : Anthony Nemirovsky
organization: Giant Rabbit
- github : angelajackson07
name : Angela Jackson
- github : amsharma9
name : Amal Sharma
organization: Abhikalak Consultants
- github : mecachisenros
name : Andrei Mondoc
- github : andrew-cormick-dockery
name : Andrew Cormick-Dockery
organization: Australian Greens
- github : andrewperry
name : Andrew Perry
organization: Community Builders
- github : andrewpthompson
name : Andrew Thompson
- name : F. M. Andrimont
- name : Andrew Walker
- github : aniesshsethh
name : Aniessh Sethh
- name : Anna Kovalova
organization: CompuCorp
- name : Anne Smale
- github : anthonyblond
name : Anthony Blond
- github : anthonylindsay
name : Anthony Lindsay
organization: Annertech
- github : applicado
- github : arborrow
name : Anthony Borrow
- github : arnaudbroes
name : Arnaud Broes
- github : AronNovakInovae
name : Aron Novak
organization: Gizra
- github : artem3
name : Artem Goncharenko
- github : arthuralmeidap
name : Arthur Almeida
organization: Neuwald Tecnologia da Informação
- name : Sean Prónay
organization: Apple Street Market
- github : AsylumSeekersCentre
name : Asylum Seekers Centre
- github : avallllovera
name : Albert Vall-Llovera
organization: iXiam
- github : artfulrobot
name : Rich Lott
organization: Artful Robot
- github : autarch
name : Dave Rolsky
- github : awasson
name : Andrew Wasson
organization: Luna Design
- github : awestuk
organization: Humanists UK
name : Andrew West;
- github : awzilkie
name : Adam Zilkie
- github : axon-obriend
name : Dan O'Brien
organization: Ginkgo Street Labs
- github : aydun
name : Aidan Saunders
organization: Squiffle Consulting
- name : Matthias Bärnthaler
- github : baernm
- github : bastienho
name : Bastien Ho
organization: N.O.U.S. Open Usefull and Simple
- github : bb
name : Benjamin Bock
organization: European Centre for Press and Media Freedom (ECPMF)
- github : bdpfreizeiten
name : David Geisel
organization: Bund Deutscher PfadfinderInnen BaWue
- github : bhahumanists
name : Andrew West
organization: British Humanist Association
- github : bjendres
name : Björn Endres
organization: SYSTOPIA Organisationsberatung
- github : BeccaTregenna
name : Becca Tregenna
- name : Ben Jarlett
- github : BettyDolfing
name : Betty Dolfing
- github : bmango
name : Ben Mango
- github : BorislavZlatanov
name : Borislav Zlatanov
- github : borisson
name : Joris Vercammen
- github : braders
name : Bradley Taylor
organization: BrightMinded Ltd
- name : Brian McFee
- github : breheret
- github : brianPHM
name : Brian Matemachani
- github : briennekordis
name : Brienne Kordis
organization: Megaphone Technology Consulting
- github : brucew2013
name : Bruce Wolfe
organization: Alcohol Justice
- github : bsilvern
name : Bob Silvern
- github : bugfolder
name : Robert J. Lang
- github : calbasi
name : Joan Cervan Andreu
organization: calbasi.net
- github : cdhassell
- name : Cath O'Connell
- github : chagrawil
name : Charlie Wilder
organization: Monadnock Developmental Services
- github : chamilwijesooriya
name : Chamil Wijesooriya
organization: MillerTech
- name : Chandana Bandara
- name : Charles Register
organization: Hemophilia of North Carolina
- github : chanunc
name : Chanun Chirattikanon
- name : Cheryl Chase
organization: Mathias Consulting
- github : chriscant
organization: PHD Computer Consultants Ltd
name : Chris Cant
- github : chrisgaraffa
name : Chris Garaffa
organization: AGH Strategies
- github : christianwach
name : Christian Wach
- name : Christophe Golle
- github : christopher-yu
name : Christopher Yu
organization: Giant Rabbit
- github : clarkac1
name : Andy Clark
- github : clnlf
name : Carlos Loeza
organization: Noah's Light Foundation
- github : coldrunKacper
name : Kacper Warda
organization: CompuCorp
- github : colemanw
name : Coleman Watts
organization: CiviCRM
- github : composerjk
name : Jeff Kellem
organization: ASMAC (American Society of Music Arrangers and Composers)
- github : com2
name : René Nieuwburg
organization: Comunica2
- github : cor73x
name : Łukasz Krutul
- github : coolbit
name : Chandana Bandara
organization: CompuCorp
- github : crusonweb
name : Dan Cruson
organization: CrusonWeb
- github : CsarRamos
name : César Ramos
organization: iXiam
- github : chrisfromredfin
name : Chris Wells
organization: Redfin Solutions
- name : Andy Clarke
- name : Daniel Martinez
- github : DanielvV
name : Daniël van Vuuren
- github : darrick
name : Darrick Servis
organization: Davis Media Access
- github : davecivicrm
name : Dave Greenberg
- github : davejenx
name : Dave Jenkins
organization: Circle Interactive
- github : angelajackson07
name : Angela Jackson
organization: Circle Interactive
- github : davialexandre
name : Davi Alexandre
organization: CompuCorp
- github : davidjosephhayes
name : David Hayes
organization: Black Brick Software
- github : davisagli
name : David Glick
organization: Glick Software
- github : deb1990
name : Debarshi Bhaumik
organization: CompuCorp
- github : deepak-srivastava
name : Deepak Srivastava
- github : dejan9393
name : Dejan Lukic
organization: Community Builders
- github : demeritcowboy
name : Dave D
- github : dereklewis123
name : Derek Lewis
- github : destrieux
- github : detsieber
name : Detlev Sieber
organization: civiservice.de
- github : devappsoftware
organization: DevApp
- github : devarun
name : Arun Singh
- github : devdavc
- github : adam-devapp
name : Adam Kwiatkowski
organization: DevApp
- github : Dawnthorn
name : Peter Haight
organization: Giant Rabbit
- github : dlobo
name : Donald Lobo
- github : dkguru
organization: Jesper Angelo
- github : don-alejandro-z
- github : dontub
name : Dominic Tubach
organization: Systopia
- github : dptarrant
name : Dave T
- github : dwoods-encircle
organization: enCircle Solutions Ltd.
name : Darren Woods
- github : eightiesguy
name : Jonny Toomey
- github : Erioldoesdesign
organization: Third Sector Design
name : Eriol Fox;
- github : jmdh
name : Dominic Hargreaves
- name : Samuel Haskell
- name : Dave Schafer
organization: BackOffice Thinking
- name : David Tarrant
organization: Nubay Services
- name : Dean Valentine
organization: National Democratic Institute
- name : Diego Viegas
organization: dotPro
- name : Dina London
organization: Jvillage Network
- name : Lizz Trudeau
organization: Drupal Association
- github : dsnopek
name : David Snopek
organization: myDropWizard
- github : dsuguy2007
name : Tommy Sheppard
- github : dvhirst
name : Donald Hirst
- github : edzelopez
name : Edsel Lopez
organization: JMA Consulting
- github : edvanleeuwen
name : Ed van Leeuwen
organization: Centrale Organisatie van Voetbal Scheidsrechters (COVS)
- github : eileenmcnaughton
name : Eileen McNaughton
organization: Wikimedia Foundation
- github : Eaiman
name : Eaiman Shoshi
- github : ejegg
name : Elliott Eggleston
organization: Wikimedia Foundation
- github : elcapo
name : Carlos Capote
- github : elisseck
name : Eli Lisseck
organization: AGH Strategies
- github : elinw
- github : Elennio
name : Elennio Dec
- github : encircle
name : Darren Woods
organization: enCircle Solutions Ltd.
- github : erawat
name : Erawat Chamanont
- github : ergonlogic
name : Christopher Gervais
organization: Ergon Logic Enterprises
- github : ericfg
name : Eric Goldhagen
organization: Openflows
- github : ErichBSchulz
name : Erich Schulz
- github : ErikHommel
name : Erik Hommel
organization: CiviCoop
- github : esantanche
name : Emanuele Santanchè
- name : Evan Chute
- name : Evan Summers
organization: National Democratic Institute
- name : Fabian Schuttenberg
organization: Systopia
- name : Fatih Ateş
- name : Fedor Khodkov
- name : Fen Labalme
organization: CivicActions
- name : Fernando Rodríguez
organization: Amnistía Internacional España
- github : fkohrt
name : Florian Kohrt
- github : fliespl
name : Arkadiusz Rzadkowolski
- github : francescbassas
name : Francesc Bassas i Bullich
- github : franslyml
name : Fransly
- github : freeform-sg
organization: Freeform Solutions
name : S.Gray
- github : freephile
name : Greg Rundlett
organization: eQuality Technology
- github : Freewindrider
- github : gah242s
name : Greg Harris
organization: Team Expansion
- github : galgeek
name : Barbara Miller
- github : gareth-circle
name : Gareth Hodgkinson
organization: Circle Interactive
- github : garethdylan361
name : Gareth Small
- github : gboudrias
name : Guillaume Boudrias
organization: Coop SymbioTIC
- github : gemmapotaka
name : Gemma Potaka
organization: Fuzion
- github : gibsonoliver
- github : ginkgofjg
name : Frank Gómez
organization: Ginkgo Street Labs
- github : ginkgomzd
name : Michael Z Daryabeygi
organization: Ginkgo Street Labs
- github : giovannidalmas1967
name : Giovanni Dalmas
- github : jmcheung
name : Jon-Man Cheung
organization: GMCVO Databases
- name : Graham Smith
organization: Edinburgh College
- github : GreysonStalcup
name : Greyson Stalcup
- name : Guillaume Rischard
github : grischard
- github : guanhuan
name : Guanhuan Chen
organization: CompuCorp
- github : GuillaumeSorel
name : Guillaume Sorel
organization: All In Appli.com
- github : guyiac
name : Guy Iaccarino
organization: Greenleaf Advancement
- github : Guydn
- github : GValFr35
- github : homotechsual
name : Mikey O'Toole
- github : hosseinamin
name : Hossein Amin
- github : in2part
- github : irenemeisel
name : Irene Meisel
- github : kewljuice
name : Wouter Hechtermans
organization: Calibrate
- github : khorporative
name : Aivars
- github : h-c-c
name : Peter Hartmann
organization: Hartmann Computer Consulting
- name : Heather Oliver
organization: Red Hot Irons
github : HROliver
- name : Heather Oliver
organization: GMCVO Databases
- github : herbdool
name : Herb van den Dool
organization: Freeform Solutions
- name : Hershel Robinson
organization: CiviHosting
- name : Paul Butler
organization: Hudson-Essex-Terraplane Club
- github : sunnycs121
name : Hassan Farooq
organization: BackOffice Thinking
- github : hoegrammer
name : Naomi Rosenberg
- name : Holly Hanks
organization: AGH Strategies
- github : howardshand
name : Howard Shand
organization: The University of the West Indies
- name : Hugo do Carmo
- name : Anthony Colombo
organization: DreamSpace
- github : igorpavlov
name : Igor Pavlov
organization: CompuCorp
- github : ineffyble
name : Effy Elden
- name : Brian Hay
- github : irritatie
name : Matthijs Keijser
organization: CiviCoop
- github : ivan-compucorp
name : Ivan
organization: CompuCorp
- github : iswilson
name : Ian Wilson
organization: Registered Nurses' Association of Ontario
- github : J0WI
- github : jaapjansma
name : Jaap Jansma
organization: CiviCoop
- github : jackaponte
name : Jack Aponte
organization: Palante Technology Cooperative
- github : jackgleeson
name : Jack Gleeson
organization: Wikimedia Foundation
- github : jackrabbithanna
name : Mark Hanna
organization: Skvare
- github : JadeGaunt
name : Jade Gaunt
- github : jamienovick
name : Jamie Novick
organization: CompuCorp
- github : jamie-tillman
name : Jamie Tillman
- github : jaomalley
- github : javiya-rupal
name : Rupal Javiya
- github : Jazz-Man
name : JazzMan
- github : jboeke
name : Jonathan Boeke
organization: Avietech
- github : jcorlew
name : Josh Corlew
organization: AGH Strategies
- github : JamesBugden314
name : James Bugden
- name : Jane Hanley
organization: AGH Strategies
- github : jensschuppe
name : Jens Schuppe
- github : jernic
name : jernic
- name : Jeremy Nicholls
organization: SEN Magazine
- github : jeromelebleu
name : Jérôme Lebleu
- github : JGaunt
name : Jade Gaunt
organization: GMCVO Databases
- github : jgillmanjr
name : Jason Gillman Jr.
organization: Liquid Web, Inc.
- github : jgrygierek
name : Jarek
- github : jitendrapurohit
name : Jitendra Purohit
organization: Fuzion
- github : jmacarthur98
- github : jmcclelland
name : Jamie McClelland
organization: Progressive Technology Project
- github : joannechester
name : Joanne Chester
- github : joapta
- github : joels341
name : Joel Stevens
- github : johncronan
name : John Kyle Cronan
- github : johntwyman
name : John Twyman
organization: Australian Greens
- github : jofranz
organization: Systopia
name : Johannes
- github : jorich-2000
name : Jonathan Richardson
- github : JKingsnorth
name : John Kingsnorth
- github : JO0st
name : Joost Fock
- github : JoeMurray
name : Joe Murray
organization: JMA Consulting
- github : johanv
name : Johan Vervloet
- github : JohnFF
name : John Kirk
organization: CiviFirst
- name : Jon-man Cheung
organization: GMCVO Databases
- github : jonesinator
name : Aaron Jones
- github : joshgowans
name : Josh Gowans
organization: CiviCRM
- github : josephlacey
name : Joseph Lacey
- github : jptillman
- github : JSProffitt
name : Jeremy Proffitt
organization: Ezodesign
- name : Julian Libor
- name : Julie Hall
organization: Custom Websites to Go
- github : jusfreeman
name : Justin Freeman
organization: Agileware
- github : justinmosier
name : Justin Mosier
organization: Mosier Consulting
- github : jvos
- github : kainuk
name : Klaas Eikelboom
organization: CiviCoop
- github : Kajakaran
name : Kajakaran Balakrishnan
organization: Veda Consulting
- github : kapn1966
name : Keith Nunn
organization: kapn*net Technology Services
- github : kartik1000
name : Kartik Kathuria
- github : karthik-awebon
name : Karthikeyan Balasubramanian
organization: Awebon Technologies
- github : kerasai
name : Will Long
- github : kirk-circle
name : Kirk Jackson
organization: Circle Interactive
- github : kngs
name : Karen Stevenson
organization: Greenleaf Advancement
- github : KarinG
name : Karin Gerritsen
organization: Semper IT
- github : kaspernowak
name : Kasper Nowak
organization: NowaTech
- github : kcristiano
name : Kevin Cristiano
organization: Tadpole Collective
- github : kenwest
name : Ken West
- github : klevie
name : Kevin Levie
organization: Levity
- github : konadave
name : David Reedy Jr
organization: Klangsoft
- github : kreynen
name : Kevin Reynen
- name : Kristine Chan
- github : kryptothesuperdog
name : Andrew West
organization: British Humanist Association
- github : kurund
name : Kurund Jalmi
organization: Third Sector Design
- github : kzalewski
name : Ken Zalewski
organization: New York State Senate
- github : lalgwebdev
name : Tony Maynard-Smith
- github : larssandergreen
name : Lars Sander-Green
organization: Wildsight
- github : laryn
name : Laryn Kragt Bakker
organization: CEDC
- github : laurynnlowe
name : Laurynn Lowe
- github : lcdservices
name : Brian Shaughnessy
organization: Lighthouse Consulting and Design
- github : Leanwebstart
name : Serge Lachapelle
- github : lemacarl
name : Carl Andrew Lema
organization: Kanzu Code
- github : Levi-70
name : Levi.k
- github : liblogger
name : Helen MacDonald
organization: Glasgow Women's Library
- github : liedekef
name : Franky Van Liedekerke
organization: E-Dynamics
- github : lisandro-compucorp
organization: CompuCorp
name : Lisandro
- github : litespeedmarc
name : Marc Brazeau
- github : loganbear
name : Logan Bear
organization: DignityUSA
- name : Lola Slade
github : lolaslade
organization: Freeform Solutions