-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
2624 lines (2599 loc) · 148 KB
/
db.json
File metadata and controls
2624 lines (2599 loc) · 148 KB
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
{
"users": [
{
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false,
"name": "Arthur Warmling",
"company": null,
"blog": "",
"location": "Santa Catarina, Brazil",
"email": null,
"hireable": null,
"bio": "Just a lover of PHP, Laravel, JavaScript",
"twitter_username": null,
"public_repos": 25,
"public_gists": 0,
"followers": 11,
"following": 5,
"created_at": "2014-09-07T21:06:26Z",
"updated_at": "2023-03-15T22:50:59Z"
}
],
"repositories": [
{
"id": 231927673,
"login": "arthurarw",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzE5Mjc2NzM=",
"name": "AdminLTE",
"full_name": "arthurarw/AdminLTE",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/AdminLTE",
"description": "AdminLTE - Free admin dashboard template based on Bootstrap 4 & 3",
"fork": true,
"url": "https://api.github.com/repos/arthurarw/AdminLTE",
"forks_url": "https://api.github.com/repos/arthurarw/AdminLTE/forks",
"keys_url": "https://api.github.com/repos/arthurarw/AdminLTE/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/AdminLTE/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/AdminLTE/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/AdminLTE/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/AdminLTE/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/AdminLTE/events",
"assignees_url": "https://api.github.com/repos/arthurarw/AdminLTE/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/AdminLTE/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/AdminLTE/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/AdminLTE/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/AdminLTE/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/AdminLTE/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/AdminLTE/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/AdminLTE/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/AdminLTE/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/AdminLTE/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/AdminLTE/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/AdminLTE/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/AdminLTE/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/AdminLTE/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/AdminLTE/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/AdminLTE/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/AdminLTE/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/AdminLTE/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/AdminLTE/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/AdminLTE/merges",
"archive_url": "https://api.github.com/repos/arthurarw/AdminLTE/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/AdminLTE/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/AdminLTE/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/AdminLTE/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/AdminLTE/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/AdminLTE/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/AdminLTE/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/AdminLTE/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/AdminLTE/deployments",
"created_at": "2020-01-05T14:14:42Z",
"updated_at": "2020-01-05T14:14:44Z",
"pushed_at": "2019-12-27T22:08:19Z",
"git_url": "git://github.com/arthurarw/AdminLTE.git",
"ssh_url": "git@github.com:arthurarw/AdminLTE.git",
"clone_url": "https://github.com/arthurarw/AdminLTE.git",
"svn_url": "https://github.com/arthurarw/AdminLTE",
"homepage": "https://adminlte.io",
"size": 83400,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 198802638,
"login": "arthurarw",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTg4MDI2Mzg=",
"name": "animated-login",
"full_name": "arthurarw/animated-login",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/animated-login",
"description": "Animated Login with HTML, CSS and jQuery",
"fork": false,
"url": "https://api.github.com/repos/arthurarw/animated-login",
"forks_url": "https://api.github.com/repos/arthurarw/animated-login/forks",
"keys_url": "https://api.github.com/repos/arthurarw/animated-login/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/animated-login/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/animated-login/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/animated-login/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/animated-login/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/animated-login/events",
"assignees_url": "https://api.github.com/repos/arthurarw/animated-login/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/animated-login/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/animated-login/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/animated-login/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/animated-login/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/animated-login/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/animated-login/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/animated-login/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/animated-login/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/animated-login/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/animated-login/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/animated-login/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/animated-login/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/animated-login/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/animated-login/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/animated-login/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/animated-login/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/animated-login/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/animated-login/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/animated-login/merges",
"archive_url": "https://api.github.com/repos/arthurarw/animated-login/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/animated-login/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/animated-login/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/animated-login/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/animated-login/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/animated-login/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/animated-login/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/animated-login/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/animated-login/deployments",
"created_at": "2019-07-25T09:39:03Z",
"updated_at": "2021-01-12T01:11:46Z",
"pushed_at": "2021-01-12T01:11:43Z",
"git_url": "git://github.com/arthurarw/animated-login.git",
"ssh_url": "git@github.com:arthurarw/animated-login.git",
"clone_url": "https://github.com/arthurarw/animated-login.git",
"svn_url": "https://github.com/arthurarw/animated-login",
"homepage": null,
"size": 27,
"stargazers_count": 1,
"watchers_count": 1,
"language": "CSS",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 1,
"watchers": 1,
"default_branch": "master"
},
{
"id": 198843291,
"node_id": "MDEwOlJlcG9zaXRvcnkxOTg4NDMyOTE=",
"name": "arthurarw.github.io",
"full_name": "arthurarw/arthurarw.github.io",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/arthurarw.github.io",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/arthurarw/arthurarw.github.io",
"forks_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/forks",
"keys_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/events",
"assignees_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/merges",
"archive_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/arthurarw.github.io/deployments",
"created_at": "2019-07-25T14:07:46Z",
"updated_at": "2019-07-29T09:40:52Z",
"pushed_at": "2019-07-29T09:40:51Z",
"git_url": "git://github.com/arthurarw/arthurarw.github.io.git",
"ssh_url": "git@github.com:arthurarw/arthurarw.github.io.git",
"clone_url": "https://github.com/arthurarw/arthurarw.github.io.git",
"svn_url": "https://github.com/arthurarw/arthurarw.github.io",
"homepage": null,
"size": 31,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 280258995,
"node_id": "MDEwOlJlcG9zaXRvcnkyODAyNTg5OTU=",
"name": "b7webReactNative",
"full_name": "arthurarw/b7webReactNative",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/b7webReactNative",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/arthurarw/b7webReactNative",
"forks_url": "https://api.github.com/repos/arthurarw/b7webReactNative/forks",
"keys_url": "https://api.github.com/repos/arthurarw/b7webReactNative/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/b7webReactNative/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/b7webReactNative/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/b7webReactNative/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/b7webReactNative/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/b7webReactNative/events",
"assignees_url": "https://api.github.com/repos/arthurarw/b7webReactNative/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/b7webReactNative/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/b7webReactNative/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/b7webReactNative/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/b7webReactNative/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/b7webReactNative/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/b7webReactNative/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/b7webReactNative/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/b7webReactNative/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/b7webReactNative/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/b7webReactNative/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/b7webReactNative/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/b7webReactNative/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/b7webReactNative/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/b7webReactNative/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/b7webReactNative/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/b7webReactNative/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/b7webReactNative/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/b7webReactNative/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/b7webReactNative/merges",
"archive_url": "https://api.github.com/repos/arthurarw/b7webReactNative/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/b7webReactNative/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/b7webReactNative/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/b7webReactNative/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/b7webReactNative/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/b7webReactNative/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/b7webReactNative/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/b7webReactNative/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/b7webReactNative/deployments",
"created_at": "2020-07-16T21:09:04Z",
"updated_at": "2020-07-29T16:57:39Z",
"pushed_at": "2023-01-06T11:41:10Z",
"git_url": "git://github.com/arthurarw/b7webReactNative.git",
"ssh_url": "git@github.com:arthurarw/b7webReactNative.git",
"clone_url": "https://github.com/arthurarw/b7webReactNative.git",
"svn_url": "https://github.com/arthurarw/b7webReactNative",
"homepage": null,
"size": 6868,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 18,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 18,
"watchers": 0,
"default_branch": "master"
},
{
"id": 241638729,
"node_id": "MDEwOlJlcG9zaXRvcnkyNDE2Mzg3Mjk=",
"name": "bootstrap-slider",
"full_name": "arthurarw/bootstrap-slider",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/bootstrap-slider",
"description": "A slider control for Bootstrap 3.",
"fork": true,
"url": "https://api.github.com/repos/arthurarw/bootstrap-slider",
"forks_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/forks",
"keys_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/events",
"assignees_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/merges",
"archive_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/bootstrap-slider/deployments",
"created_at": "2020-02-19T14:13:15Z",
"updated_at": "2020-02-19T14:13:17Z",
"pushed_at": "2019-11-21T22:55:21Z",
"git_url": "git://github.com/arthurarw/bootstrap-slider.git",
"ssh_url": "git@github.com:arthurarw/bootstrap-slider.git",
"clone_url": "https://github.com/arthurarw/bootstrap-slider.git",
"svn_url": "https://github.com/arthurarw/bootstrap-slider",
"homepage": "http://seiyria.github.io/bootstrap-slider/",
"size": 17835,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 268154990,
"node_id": "MDEwOlJlcG9zaXRvcnkyNjgxNTQ5OTA=",
"name": "cafeapi",
"full_name": "arthurarw/cafeapi",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/cafeapi",
"description": "Biblioteca API para integração com o webservice do SaaS FSPHP",
"fork": false,
"url": "https://api.github.com/repos/arthurarw/cafeapi",
"forks_url": "https://api.github.com/repos/arthurarw/cafeapi/forks",
"keys_url": "https://api.github.com/repos/arthurarw/cafeapi/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/cafeapi/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/cafeapi/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/cafeapi/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/cafeapi/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/cafeapi/events",
"assignees_url": "https://api.github.com/repos/arthurarw/cafeapi/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/cafeapi/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/cafeapi/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/cafeapi/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/cafeapi/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/cafeapi/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/cafeapi/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/cafeapi/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/cafeapi/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/cafeapi/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/cafeapi/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/cafeapi/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/cafeapi/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/cafeapi/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/cafeapi/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/cafeapi/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/cafeapi/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/cafeapi/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/cafeapi/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/cafeapi/merges",
"archive_url": "https://api.github.com/repos/arthurarw/cafeapi/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/cafeapi/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/cafeapi/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/cafeapi/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/cafeapi/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/cafeapi/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/cafeapi/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/cafeapi/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/cafeapi/deployments",
"created_at": "2020-05-30T20:31:31Z",
"updated_at": "2020-05-30T20:44:45Z",
"pushed_at": "2020-05-30T20:55:27Z",
"git_url": "git://github.com/arthurarw/cafeapi.git",
"ssh_url": "git@github.com:arthurarw/cafeapi.git",
"clone_url": "https://github.com/arthurarw/cafeapi.git",
"svn_url": "https://github.com/arthurarw/cafeapi",
"homepage": "",
"size": 12,
"stargazers_count": 0,
"watchers_count": 0,
"language": "PHP",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 348883343,
"login": "arthurarw",
"node_id": "MDEwOlJlcG9zaXRvcnkzNDg4ODMzNDM=",
"name": "cinema-next",
"full_name": "arthurarw/cinema-next",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/cinema-next",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/arthurarw/cinema-next",
"forks_url": "https://api.github.com/repos/arthurarw/cinema-next/forks",
"keys_url": "https://api.github.com/repos/arthurarw/cinema-next/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/cinema-next/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/cinema-next/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/cinema-next/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/cinema-next/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/cinema-next/events",
"assignees_url": "https://api.github.com/repos/arthurarw/cinema-next/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/cinema-next/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/cinema-next/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/cinema-next/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/cinema-next/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/cinema-next/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/cinema-next/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/cinema-next/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/cinema-next/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/cinema-next/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/cinema-next/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/cinema-next/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/cinema-next/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/cinema-next/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/cinema-next/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/cinema-next/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/cinema-next/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/cinema-next/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/cinema-next/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/cinema-next/merges",
"archive_url": "https://api.github.com/repos/arthurarw/cinema-next/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/cinema-next/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/cinema-next/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/cinema-next/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/cinema-next/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/cinema-next/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/cinema-next/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/cinema-next/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/cinema-next/deployments",
"created_at": "2021-03-17T23:43:11Z",
"updated_at": "2021-03-18T02:00:05Z",
"pushed_at": "2021-03-18T02:00:03Z",
"git_url": "git://github.com/arthurarw/cinema-next.git",
"ssh_url": "git@github.com:arthurarw/cinema-next.git",
"clone_url": "https://github.com/arthurarw/cinema-next.git",
"svn_url": "https://github.com/arthurarw/cinema-next",
"homepage": null,
"size": 37,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 422876050,
"node_id": "R_kgDOGTSTkg",
"login": "arthurarw",
"name": "contacts-alfa",
"full_name": "arthurarw/contacts-alfa",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/contacts-alfa",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/arthurarw/contacts-alfa",
"forks_url": "https://api.github.com/repos/arthurarw/contacts-alfa/forks",
"keys_url": "https://api.github.com/repos/arthurarw/contacts-alfa/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/contacts-alfa/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/contacts-alfa/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/contacts-alfa/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/contacts-alfa/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/contacts-alfa/events",
"assignees_url": "https://api.github.com/repos/arthurarw/contacts-alfa/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/contacts-alfa/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/contacts-alfa/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/contacts-alfa/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/contacts-alfa/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/contacts-alfa/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/contacts-alfa/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/contacts-alfa/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/contacts-alfa/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/contacts-alfa/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/contacts-alfa/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/contacts-alfa/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/contacts-alfa/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/contacts-alfa/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/contacts-alfa/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/contacts-alfa/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/contacts-alfa/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/contacts-alfa/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/contacts-alfa/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/contacts-alfa/merges",
"archive_url": "https://api.github.com/repos/arthurarw/contacts-alfa/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/contacts-alfa/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/contacts-alfa/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/contacts-alfa/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/contacts-alfa/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/contacts-alfa/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/contacts-alfa/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/contacts-alfa/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/contacts-alfa/deployments",
"created_at": "2021-10-30T12:34:19Z",
"updated_at": "2021-10-30T18:10:26Z",
"pushed_at": "2021-10-30T18:10:24Z",
"git_url": "git://github.com/arthurarw/contacts-alfa.git",
"ssh_url": "git@github.com:arthurarw/contacts-alfa.git",
"clone_url": "https://github.com/arthurarw/contacts-alfa.git",
"svn_url": "https://github.com/arthurarw/contacts-alfa",
"homepage": null,
"size": 750,
"stargazers_count": 0,
"watchers_count": 0,
"language": "PHP",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 422356653,
"node_id": "R_kgDOGSymrQ",
"name": "contacts-list",
"full_name": "arthurarw/contacts-list",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",
"received_events_url": "https://api.github.com/users/arthurarw/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/arthurarw/contacts-list",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/arthurarw/contacts-list",
"forks_url": "https://api.github.com/repos/arthurarw/contacts-list/forks",
"keys_url": "https://api.github.com/repos/arthurarw/contacts-list/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/arthurarw/contacts-list/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/arthurarw/contacts-list/teams",
"hooks_url": "https://api.github.com/repos/arthurarw/contacts-list/hooks",
"issue_events_url": "https://api.github.com/repos/arthurarw/contacts-list/issues/events{/number}",
"events_url": "https://api.github.com/repos/arthurarw/contacts-list/events",
"assignees_url": "https://api.github.com/repos/arthurarw/contacts-list/assignees{/user}",
"branches_url": "https://api.github.com/repos/arthurarw/contacts-list/branches{/branch}",
"tags_url": "https://api.github.com/repos/arthurarw/contacts-list/tags",
"blobs_url": "https://api.github.com/repos/arthurarw/contacts-list/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/arthurarw/contacts-list/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/arthurarw/contacts-list/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/arthurarw/contacts-list/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/arthurarw/contacts-list/statuses/{sha}",
"languages_url": "https://api.github.com/repos/arthurarw/contacts-list/languages",
"stargazers_url": "https://api.github.com/repos/arthurarw/contacts-list/stargazers",
"contributors_url": "https://api.github.com/repos/arthurarw/contacts-list/contributors",
"subscribers_url": "https://api.github.com/repos/arthurarw/contacts-list/subscribers",
"subscription_url": "https://api.github.com/repos/arthurarw/contacts-list/subscription",
"commits_url": "https://api.github.com/repos/arthurarw/contacts-list/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/arthurarw/contacts-list/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/arthurarw/contacts-list/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/arthurarw/contacts-list/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/arthurarw/contacts-list/contents/{+path}",
"compare_url": "https://api.github.com/repos/arthurarw/contacts-list/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/arthurarw/contacts-list/merges",
"archive_url": "https://api.github.com/repos/arthurarw/contacts-list/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/arthurarw/contacts-list/downloads",
"issues_url": "https://api.github.com/repos/arthurarw/contacts-list/issues{/number}",
"pulls_url": "https://api.github.com/repos/arthurarw/contacts-list/pulls{/number}",
"milestones_url": "https://api.github.com/repos/arthurarw/contacts-list/milestones{/number}",
"notifications_url": "https://api.github.com/repos/arthurarw/contacts-list/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/arthurarw/contacts-list/labels{/name}",
"releases_url": "https://api.github.com/repos/arthurarw/contacts-list/releases{/id}",
"deployments_url": "https://api.github.com/repos/arthurarw/contacts-list/deployments",
"created_at": "2021-10-28T21:10:50Z",
"updated_at": "2021-10-28T21:57:18Z",
"pushed_at": "2021-10-28T21:57:15Z",
"git_url": "git://github.com/arthurarw/contacts-list.git",
"ssh_url": "git@github.com:arthurarw/contacts-list.git",
"clone_url": "https://github.com/arthurarw/contacts-list.git",
"svn_url": "https://github.com/arthurarw/contacts-list",
"homepage": null,
"size": 556,
"stargazers_count": 0,
"watchers_count": 0,
"language": "PHP",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 196254022,
"node_id": "MDEwOlJlcG9zaXRvcnkxOTYyNTQwMjI=",
"name": "crud-jquery-basico",
"full_name": "arthurarw/crud-jquery-basico",
"private": false,
"owner": {
"login": "arthurarw",
"id": 8689325,
"node_id": "MDQ6VXNlcjg2ODkzMjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/8689325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arthurarw",
"html_url": "https://github.com/arthurarw",
"followers_url": "https://api.github.com/users/arthurarw/followers",
"following_url": "https://api.github.com/users/arthurarw/following{/other_user}",
"gists_url": "https://api.github.com/users/arthurarw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arthurarw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arthurarw/subscriptions",
"organizations_url": "https://api.github.com/users/arthurarw/orgs",
"repos_url": "https://api.github.com/users/arthurarw/repos",
"events_url": "https://api.github.com/users/arthurarw/events{/privacy}",