-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-issues.json
2321 lines (2291 loc) · 147 KB
/
github-issues.json
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
[
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/557",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/557/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/557/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/557/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/557",
"id": 580272122,
"node_id": "MDU6SXNzdWU1ODAyNzIxMjI=",
"number": 557,
"title": "[Joinville/SC] PHP Developer Pleno/Sênior na Volts Digital",
"user": {
"login": "eversonjp",
"id": 26096661,
"node_id": "MDQ6VXNlcjI2MDk2NjYx",
"avatar_url": "https://avatars3.githubusercontent.com/u/26096661?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/eversonjp",
"html_url": "https://github.com/eversonjp",
"followers_url": "https://api.github.com/users/eversonjp/followers",
"following_url": "https://api.github.com/users/eversonjp/following{/other_user}",
"gists_url": "https://api.github.com/users/eversonjp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/eversonjp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/eversonjp/subscriptions",
"organizations_url": "https://api.github.com/users/eversonjp/orgs",
"repos_url": "https://api.github.com/users/eversonjp/repos",
"events_url": "https://api.github.com/users/eversonjp/events{/privacy}",
"received_events_url": "https://api.github.com/users/eversonjp/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 592362331,
"node_id": "MDU6TGFiZWw1OTIzNjIzMzE=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Em-Aberto",
"name": "alocação/Em-Aberto",
"color": "fbca04",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-12T23:07:19Z",
"updated_at": "2020-03-13T19:00:26Z",
"closed_at": null,
"author_association": "NONE",
"body": "## DESCRIÇÃO DO JOB\r\n\r\nTemos uma equipe multidisciplinar enxuta, onde todos participam de projetos dos clientes, ajudando e resolvendo problemas, otimizando e melhorando o que fazemos. Se este cenário te interessa e você gosta de desenvolver, tenho certeza que nossa posição pode te interessar. Então, continue lendo abaixo...\r\n\r\n## LOCAL / FORMATO\r\n\r\n- Disponibilidade **fulltime** para trabalho remoto em outras cidades\r\n- Ou alocado na agência em Joinville/SC, para integração ao time\r\n\r\n## REQUISITOS\r\n\r\n- Domínio absoluto de PHP e SQL\r\n- **PRECISA** dominar WordPress e WooCommerce muito bem (requisito para a vaga)\r\n- Se já tiver trabalhado com Magento ou Zend, é um plus\r\n- Excelente conhecimento de JavaScript e jQuery\r\n- Sólido domínio de SASS\r\n- Conhecimento intermediário de Vue.js e/ou React\r\n- Domínio de Git flow\r\n- Conhecimento nos serviços Cloud (Digital Ocean ou Amazon)\r\n- Ser organizado, responsável e capaz de trabalhar em equipe\r\n- Ser auto-gerenciável e capaz de resolver problemas\r\n- Total comprometimento com o resultado final do projeto\r\n\r\n## CONTRATAÇÃO\r\n\r\nPJ, via contrato entre as partes.\r\n\r\n## SOBRE A VOLTS DIGITAL\r\n\r\nSomos uma agência de 14 pessoas, orientada a resultados, que busca energizar negócios e fortalecer a presença de marca dos seus clientes. Nossa característica é ser mão na massa. Gostamos de resolver problemas. Somos auto-gerenciáveis. Temos pepinos também, como qualquer empresa. Esperamos que você nos ajude a resolvê-los da melhor maneira. Se o que você leu até aqui te interessou, vai se dar bem conosco, então entra em contato aí embaixo.\r\n\r\n## CULTURA DE EMPRESA\r\n\r\nVeja mais aqui: **http://voltsdigital.com.br/trabalhe-conosco**\r\n\r\n## COMO SE CANDIDATAR\r\n\r\nVocê pode mandar um e-mail para **vagas@voltsdigital.com.br** com seu GIT ou alguma maneira de analisarmos seus códigos.**\r\n\r\n## Labels\r\n\r\n- Alocado\r\n- PJ\r\n- Pleno\r\n- Sênior\r\n- Remoto\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/556",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/556/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/556/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/556/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/556",
"id": 579559158,
"node_id": "MDU6SXNzdWU1Nzk1NTkxNTg=",
"number": 556,
"title": "[São Paulo/SP] Head Web Developer no Sua Música",
"user": {
"login": "carolinazalc",
"id": 49036152,
"node_id": "MDQ6VXNlcjQ5MDM2MTUy",
"avatar_url": "https://avatars3.githubusercontent.com/u/49036152?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/carolinazalc",
"html_url": "https://github.com/carolinazalc",
"followers_url": "https://api.github.com/users/carolinazalc/followers",
"following_url": "https://api.github.com/users/carolinazalc/following{/other_user}",
"gists_url": "https://api.github.com/users/carolinazalc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/carolinazalc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/carolinazalc/subscriptions",
"organizations_url": "https://api.github.com/users/carolinazalc/orgs",
"repos_url": "https://api.github.com/users/carolinazalc/repos",
"events_url": "https://api.github.com/users/carolinazalc/events{/privacy}",
"received_events_url": "https://api.github.com/users/carolinazalc/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429775845,
"node_id": "MDU6TGFiZWw0Mjk3NzU4NDU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/CLT",
"name": "regime/CLT",
"color": "bfe5bf",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-11T21:36:17Z",
"updated_at": "2020-03-12T21:13:08Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\n- Gestão do time de tecnologia junto ao CTO;\r\n- Desenvolvimento e manutenção do backend e frontend;\r\n- Trabalhar em estreita colaboração com o Design e o Produto para liberar funcionalidades estratégicas para empresa;\r\n- Contribuir e implementar novas funcionalidades do zero;\r\n- Monitorar o desempenho de todos processos da empresa, fazendo manutenção e melhorando continuamente;\r\n\r\n## Local\r\n\r\nSão Paulo - Itaim Bibi\r\n\r\n## Benefícios\r\n\r\n- Plano de saúde\r\n- VR de R$ 27,00/dia\r\n- VT\r\n- Auxílio à cursos e eventos\r\n- Home Office\r\n\r\n#### Diferenciais\r\n\r\n- Flexibilidade com Home Office\r\n- Frigobar e geladeira sempre cheios :P\r\n- Sala de descompressão com Ping Pong, Vídeo Game, Sofá, TV etc.\r\n- Autonomia\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n\r\n- Experiência com gestão de pessoas;\r\n- Conhecer metodologias ágeis;\r\n- Conhecimento em padrões de projeto e boas práticas de engenharia de software;\r\n- Ter domínio em desenvolvimento na AWS;\r\n- Experiência em versionamento usando Git;\r\n- Experiência em PHP/Python/Node\r\n\r\n## Contratação\r\n\r\nCLT\r\n\r\n## Nossa empresa\r\n\r\nSua Música é a maior plataforma de conteúdo de música brasileira com 10 milhões de usuários, onde artistas lançam seu repertório grátis para milhões de fãs, que também se conectam e engajam através do nosso site, aplicativo e redes sociais.\r\n\r\n**Nossos valores:**\r\n\r\n- Acreditamos no poder da música e buscamos nos especializar nos gêneros musicais que atuamos.\r\n- Somos ágeis, proativos e pioneiros\r\n- Sonhamos grande\r\n- Somos colaborativos em busca dos objetivos da empresa\r\n- Não toleramos qualquer forma de discriminação ou preconceito\r\n- Respeitamos compromissos\r\n- Incentivamos o desenvolvimento das pessoas e promovemos a meritocracia\r\n- Quebramos barreiras\r\n\r\n## Como se candidatar\r\n\r\nAcesse e se inscreva! https://jobs.quickin.io/suamusica/jobs/5e3c891c6ddeb900136d3fe1\r\n\r\n## Tempo médio de feedbacks\r\n\r\nCostumamos enviar feedbacks em até 5 dias após cada processo.\r\nE-mail para contato em caso de não haver resposta: carolinaz@suamusica.com.br\r\n\r\n## Labels\r\n\r\n- Alocado\r\n- CLT\r\n- Sênior"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/555",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/555/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/555/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/555/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/555",
"id": 579556521,
"node_id": "MDU6SXNzdWU1Nzk1NTY1MjE=",
"number": 555,
"title": "[Fortaleza/CE] Head Web Developer no Sua Música",
"user": {
"login": "carolinazalc",
"id": 49036152,
"node_id": "MDQ6VXNlcjQ5MDM2MTUy",
"avatar_url": "https://avatars3.githubusercontent.com/u/49036152?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/carolinazalc",
"html_url": "https://github.com/carolinazalc",
"followers_url": "https://api.github.com/users/carolinazalc/followers",
"following_url": "https://api.github.com/users/carolinazalc/following{/other_user}",
"gists_url": "https://api.github.com/users/carolinazalc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/carolinazalc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/carolinazalc/subscriptions",
"organizations_url": "https://api.github.com/users/carolinazalc/orgs",
"repos_url": "https://api.github.com/users/carolinazalc/repos",
"events_url": "https://api.github.com/users/carolinazalc/events{/privacy}",
"received_events_url": "https://api.github.com/users/carolinazalc/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429775845,
"node_id": "MDU6TGFiZWw0Mjk3NzU4NDU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/CLT",
"name": "regime/CLT",
"color": "bfe5bf",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-11T21:30:10Z",
"updated_at": "2020-03-12T21:12:42Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\n- Gestão do time de tecnologia junto ao CTO;\r\n- Desenvolvimento e manutenção do backend e frontend;\r\n- Trabalhar em estreita colaboração com o Design e o Produto para liberar funcionalidades estratégicas para empresa;\r\n- Contribuir e implementar novas funcionalidades do zero;\r\n- Monitorar o desempenho de todos processos da empresa, fazendo manutenção e melhorando continuamente;\r\n\r\n## Local\r\n\r\nAldeota - Fortaleza\r\n\r\n## Benefícios\r\n\r\n- Plano de saúde\r\n- VR de R$ 27,00/dia\r\n- VT\r\n- Auxílio à cursos e eventos\r\n- Home Office\r\n\r\n#### Diferenciais\r\n\r\n- Flexibilidade com Home Office\r\n- Frigobar e geladeira sempre cheios :P\r\n- Sala de descompressão com Ping Pong, Vídeo Game, Sofá, TV etc.\r\n- Autonomia\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n\r\n- Experiência com gestão de pessoas;\r\n- Conhecer metodologias ágeis;\r\n- Conhecimento em padrões de projeto e boas práticas de engenharia de software;\r\n- Ter domínio em desenvolvimento na AWS;\r\n- Experiência em versionamento usando Git;\r\n- Experiência em PHP/Python/Node\r\n\r\n## Contratação\r\n\r\nCLT\r\n\r\n## Nossa empresa\r\n\r\nSua Música é a maior plataforma de conteúdo de música brasileira com 10 milhões de usuários, onde artistas lançam seu repertório grátis para milhões de fãs, que também se conectam e engajam através do nosso site, aplicativo e redes sociais.\r\n\r\n**Nossos valores:**\r\n\r\n- Acreditamos no poder da música e buscamos nos especializar nos gêneros musicais que atuamos.\r\n- Somos ágeis, proativos e pioneiros\r\n- Sonhamos grande\r\n- Somos colaborativos em busca dos objetivos da empresa\r\n- Não toleramos qualquer forma de discriminação ou preconceito\r\n- Respeitamos compromissos\r\n- Incentivamos o desenvolvimento das pessoas e promovemos a meritocracia\r\n- Quebramos barreiras\r\n\r\n## Como se candidatar\r\n\r\nAcesse e se inscreva! https://jobs.quickin.io/suamusica/jobs/5e3c891c6ddeb900136d3fe1\r\n\r\n## Tempo médio de feedbacks\r\n\r\nCostumamos enviar feedbacks em até 5 dias após cada processo.\r\nE-mail para contato em caso de não haver resposta: carolinaz@suamusica.com.br\r\n\r\n## Labels\r\n\r\n- Alocado\r\n- CLT\r\n- Sênior"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/554",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/554/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/554/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/554/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/554",
"id": 578538646,
"node_id": "MDU6SXNzdWU1Nzg1Mzg2NDY=",
"number": 554,
"title": "[São Paulo/SP] PHP Developer (Pleno) na ListenX",
"user": {
"login": "gustavoper",
"id": 1050263,
"node_id": "MDQ6VXNlcjEwNTAyNjM=",
"avatar_url": "https://avatars0.githubusercontent.com/u/1050263?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gustavoper",
"html_url": "https://github.com/gustavoper",
"followers_url": "https://api.github.com/users/gustavoper/followers",
"following_url": "https://api.github.com/users/gustavoper/following{/other_user}",
"gists_url": "https://api.github.com/users/gustavoper/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gustavoper/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gustavoper/subscriptions",
"organizations_url": "https://api.github.com/users/gustavoper/orgs",
"repos_url": "https://api.github.com/users/gustavoper/repos",
"events_url": "https://api.github.com/users/gustavoper/events{/privacy}",
"received_events_url": "https://api.github.com/users/gustavoper/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 570277203,
"node_id": "MDU6TGFiZWw1NzAyNzcyMDM=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/A-Combinar",
"name": "regime/A-Combinar",
"color": "fbca04",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-10T12:17:44Z",
"updated_at": "2020-03-10T13:34:24Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\nSua missão será atuar no departamento de desenvolvimento, participando de projetos de arquitetura, modelagem, desenvolvimento e análise de sistemas.\r\n\r\nBuscamos profissionais focados, com pensamento lógico, organizados e que trabalhem bem em equipe, em um ambiente colaborativo e dinâmico.\r\n\r\n\r\n\r\n## Local\r\n\r\nSão Paulo/SP - Ipiranga (próximo a estação Sacomã do metrô)\r\n\r\n## Benefícios\r\n\r\nVale Transporte ou Combustível, Vale Refeição, Vale Alimentação, Assistência Médica e Odontológica, Seguro de Vida, Pós-Graduação / MBA, Inglês in company.\r\n\r\n\r\n#### Diferenciais\r\n\r\n- Políticas de home-office\r\n- Happy-hour toda sexta-feira =)\r\n\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n\r\nImprescindível Conhecer: PHP 5x, MySQL, HTML e CSS, Conhecimento em algum framework PHP MVC (Yii, Laravel, Codeigniter, Symfony), Javascript, JQuery, API Rest.\r\n\r\n\r\n**Desejáveis:**\r\n\r\nPHP 7, Doctrine, BootStrap, API SOAP. Conhecimentos em SaaS.\r\n\r\n## Contratação\r\n\r\nCLT ou PJ a combinar\r\n\r\n## Nossa empresa\r\n\r\nSomos apaixonados por música, tecnologia e inovação e buscamos pessoas que compartilhem desta paixão para fazer parte do nosso time!\r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para rh@listenx.com.br com seu CV anexado - enviar no assunto: **Vaga PHP Pleno**\r\n\r\n[Também é possível candidatar-se pelo Linkedin](https://www.linkedin.com/jobs/cap/view/1691879681/).\r\n\r\n## Labels\r\n\r\n\r\n### Alocação:\r\n- Presencial\r\n\r\n\r\n### Contratação:\r\n- CLT\r\n- PJ\r\n\r\n### Experiência\r\n- Pleno\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/553",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/553/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/553/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/553/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/553",
"id": 578002329,
"node_id": "MDU6SXNzdWU1NzgwMDIzMjk=",
"number": 553,
"title": "[Remoto] Desenvolvedor(a) PHP Fullstack na SSX Digital",
"user": {
"login": "guireisbh",
"id": 7688223,
"node_id": "MDQ6VXNlcjc2ODgyMjM=",
"avatar_url": "https://avatars0.githubusercontent.com/u/7688223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/guireisbh",
"html_url": "https://github.com/guireisbh",
"followers_url": "https://api.github.com/users/guireisbh/followers",
"following_url": "https://api.github.com/users/guireisbh/following{/other_user}",
"gists_url": "https://api.github.com/users/guireisbh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/guireisbh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/guireisbh/subscriptions",
"organizations_url": "https://api.github.com/users/guireisbh/orgs",
"repos_url": "https://api.github.com/users/guireisbh/repos",
"events_url": "https://api.github.com/users/guireisbh/events{/privacy}",
"received_events_url": "https://api.github.com/users/guireisbh/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 429776563,
"node_id": "MDU6TGFiZWw0Mjk3NzY1NjM=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Remoto",
"name": "alocação/Remoto",
"color": "eb6420",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2020-03-09T15:42:11Z",
"updated_at": "2020-03-09T19:01:55Z",
"closed_at": null,
"author_association": "NONE",
"body": "<!--\r\n==================================================\r\nPOR FAVOR, SÓ POSTE SE A VAGA FOR PARA DESENVOLVEDOR(A) PHP!\r\n\r\nNão faça distinção de gênero no titulo da vaga.\r\n\r\nUse: \"PHP Developer\" ao invés de \"Desenvolvedor PHP\" \\o/\r\n\r\nExemplo: `[São Paulo/SP] PHP Developer na Nome da Empresa`\r\n\r\nEvite fugir do padrão, isso só dá trabalho aos administradores,\r\npois os títulos são padronizados.\r\n==================================================\r\n-->\r\n\r\n## Descrição da vaga\r\n\r\nDesenvolvedor PHP para projetos em Laravel e Plugins para Wordpress. Será sob demanda.\r\nInício imediato.\r\n\r\n## Local\r\n\r\nEmpresa localizada em Belo Horizonte, Mas com clientes em SP, RJ, DF, RS, Roma e Londres.\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n- 2 anos de experiência com PHP 7+\r\n- 3 anos de experiência com Laravel\r\n- Experiência com desenvolvimento de plugin para Wordpress\r\n\r\n**Desejáveis:**\r\n- Experiência com Node.JS\r\n- Experiência com React/Vue.JS\r\n- Digital Ocean\r\n- Google Cloud\r\n\r\n## Contratação\r\n\r\nPJ a combinar\r\n\r\n## Nossa empresa\r\n\r\nSoftware House que trabalha com software tailor-made e também atende agências de publicidade para demandas específicas.\r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para vagas@ssxdigital.com.br com seu CV anexado - enviar no assunto: Vaga PHP\r\n\r\n## Labels\r\n\r\n<!-- Escolha abaixo, apague as que não fizerem sentido: -->\r\n### Alocação:\r\n- Remoto\r\n\r\n### Contratação:\r\n- PJ\r\n\r\n### Experiência\r\n- Pleno\r\n- Sênior"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/552",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/552/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/552/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/552/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/552",
"id": 577084448,
"node_id": "MDU6SXNzdWU1NzcwODQ0NDg=",
"number": 552,
"title": "[Remoto] Senior Full-stack Software Engineer na Ubiminds",
"user": {
"login": "Ubiminds",
"id": 58225814,
"node_id": "MDQ6VXNlcjU4MjI1ODE0",
"avatar_url": "https://avatars0.githubusercontent.com/u/58225814?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Ubiminds",
"html_url": "https://github.com/Ubiminds",
"followers_url": "https://api.github.com/users/Ubiminds/followers",
"following_url": "https://api.github.com/users/Ubiminds/following{/other_user}",
"gists_url": "https://api.github.com/users/Ubiminds/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Ubiminds/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Ubiminds/subscriptions",
"organizations_url": "https://api.github.com/users/Ubiminds/orgs",
"repos_url": "https://api.github.com/users/Ubiminds/repos",
"events_url": "https://api.github.com/users/Ubiminds/events{/privacy}",
"received_events_url": "https://api.github.com/users/Ubiminds/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 429776563,
"node_id": "MDU6TGFiZWw0Mjk3NzY1NjM=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Remoto",
"name": "alocação/Remoto",
"color": "eb6420",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-06T17:50:02Z",
"updated_at": "2020-03-09T11:13:24Z",
"closed_at": null,
"author_association": "NONE",
"body": "\r\n## Descrição da vaga\r\n\r\nWe’re hiring a Senior Software Engineer to work remotely for one of our American clients from Brazil. If you’re up to the challenge, apply below.\r\n\r\n**What you’ll do**\r\n- Work in a multicultural team combining the art of design with the art of programming;\r\n- Work in all areas of the application. This can include AWS Lambda, Serverless framework, Typescript, PHP, Java, MySQL, Terraform, or other AWS cloud tools that haven’t been released yet;\r\n- Work closely with Product Management, Product Operations, Quality Engineering, and Backend Engineering teams to help decide which features to build and how to build them;\r\n- You’ll also collaborate with Product Management, Design, and Operations teams to create and deliver tested features to production.\r\n\r\n## Local\r\n\r\nRemote from any state.\r\n\r\n## Requisitos\r\n\r\n**In order to succeed in this position, you will need**\r\n- Advanced/fluent English skills;\r\n- Experience with building mission-critical systems using Typescript + Serverless framework or other object-oriented languages such as Java, Go or Python;\r\n- Strong SQL knowledge including performance tuning/analysis, and an understanding of when to use a database like Redshift instead of MySQL;\r\n- Experience with writing unit, integration, and UI automated tests;\r\n- Experience working with various stakeholders to gather and refine product requirements and turn them into actionable engineering tasks;\r\n- Familiarity with deploying code using continuous integration tools, and especially understanding why using ECS or EKS is beneficial;\r\n- A willingness to work on UI code when projects call for it;\r\n- Good practices as TDD or BDD are a plus.\r\n\r\n## Contratação\r\nPJ \r\n\r\n## Nossa empresa\r\n\r\nWe at Ubiminds are a talent powerhouse, sourcing, recruiting and hiring sought-after tech professionals, from mid-level to leadership positions. Find out firsthand what it's like to work remotely for American SaaS companies from Brazil by listening to what customers and employees have to say: [https://www.youtube.com/watch?v=GxfqmIPKxN8](https://www.youtube.com/watch?v=GxfqmIPKxN8).\r\n\r\n## Como se candidatar\r\n\r\nApply at [https://ubiminds.com/full-stack-engineer/](https://ubiminds.com/full-stack-engineer/).\r\n\r\n## Labels\r\n- Remoto\r\n- PJ\r\n- Sênior"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/551",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/551/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/551/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/551/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/551",
"id": 576970770,
"node_id": "MDU6SXNzdWU1NzY5NzA3NzA=",
"number": 551,
"title": "[São Paulo/SP] Full Stack Developer Júnior/Pleno na EGSS",
"user": {
"login": "ivanrosolen",
"id": 226859,
"node_id": "MDQ6VXNlcjIyNjg1OQ==",
"avatar_url": "https://avatars2.githubusercontent.com/u/226859?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ivanrosolen",
"html_url": "https://github.com/ivanrosolen",
"followers_url": "https://api.github.com/users/ivanrosolen/followers",
"following_url": "https://api.github.com/users/ivanrosolen/following{/other_user}",
"gists_url": "https://api.github.com/users/ivanrosolen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ivanrosolen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ivanrosolen/subscriptions",
"organizations_url": "https://api.github.com/users/ivanrosolen/orgs",
"repos_url": "https://api.github.com/users/ivanrosolen/repos",
"events_url": "https://api.github.com/users/ivanrosolen/events{/privacy}",
"received_events_url": "https://api.github.com/users/ivanrosolen/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 712401019,
"node_id": "MDU6TGFiZWw3MTI0MDEwMTk=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Flex%C3%ADvel",
"name": "alocação/Flexível",
"color": "006b75",
"default": false,
"description": null
},
{
"id": 429776095,
"node_id": "MDU6TGFiZWw0Mjk3NzYwOTU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/J%C3%BAnior",
"name": "experiência/Júnior",
"color": "c5def5",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429775845,
"node_id": "MDU6TGFiZWw0Mjk3NzU4NDU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/CLT",
"name": "regime/CLT",
"color": "bfe5bf",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-06T14:34:35Z",
"updated_at": "2020-03-06T14:43:12Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\nO que esperamos dos candidatos:\r\n\r\nDesenvolver código limpo e de fácil manutenção;\r\nAplicar melhores práticas de documentação de código desenvolvido;\r\nVontade de aprender sobre o negócio e os sistemas da empresa;\r\n\r\n## Local\r\n\r\nRemoto a maior parte do tempo e visita a cliente\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n- PHP 5.3+\r\n- Linux / Bash Script\r\n- Html/CSS e Javascript\r\n\r\n**Diferenciais:**\r\n- Python ( não é necessário conhecer framework web )\r\n- Node / React - Para modificar sistema existente\r\n\r\n## Contratação\r\n\r\nCLT\r\n\r\n## Nossa empresa\r\n\r\nA EGSS é um empresa nascida da necessidade de atender o mundo das empresas gráficas, agência de propaganda e editoriais com as mais recentes tecnologias existente no mercado.\r\nHoje continuamos integrando e desenvolvendo aplicações nessa e em outras áreas.\r\n\r\n[http://www.egss.com.br](http://www.egss.com.br)\r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para renato@egss.com.br com seu profile do linkedin - enviar no assunto: Vaga Full Stack\r\n\r\n## Labels\r\n\r\n- CLT\r\n- Remoto - Parcial\r\n- Júnior\r\n- Pleno\r\n\r\n\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/550",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/550/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/550/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/550/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/550",
"id": 574953079,
"node_id": "MDU6SXNzdWU1NzQ5NTMwNzk=",
"number": 550,
"title": "[São Caetano do Sul/SP] PHP Developer na webfollow",
"user": {
"login": "alexjunior012",
"id": 5870837,
"node_id": "MDQ6VXNlcjU4NzA4Mzc=",
"avatar_url": "https://avatars1.githubusercontent.com/u/5870837?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alexjunior012",
"html_url": "https://github.com/alexjunior012",
"followers_url": "https://api.github.com/users/alexjunior012/followers",
"following_url": "https://api.github.com/users/alexjunior012/following{/other_user}",
"gists_url": "https://api.github.com/users/alexjunior012/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alexjunior012/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alexjunior012/subscriptions",
"organizations_url": "https://api.github.com/users/alexjunior012/orgs",
"repos_url": "https://api.github.com/users/alexjunior012/repos",
"events_url": "https://api.github.com/users/alexjunior012/events{/privacy}",
"received_events_url": "https://api.github.com/users/alexjunior012/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776095,
"node_id": "MDU6TGFiZWw0Mjk3NzYwOTU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/J%C3%BAnior",
"name": "experiência/Júnior",
"color": "c5def5",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-03T21:20:40Z",
"updated_at": "2020-03-04T12:35:22Z",
"closed_at": null,
"author_association": "NONE",
"body": "# Descrição da vaga\r\nEstamos contratando desenvolvedor PHP para trabalhar com Symfony, Laravel e Integrações entre APIs. Que goste de desafios, solucionar problemas, melhorar o código que estiver trabalhando entre outras atividades.\r\n \r\n# Local\r\nEscritório, São Caetano do Sul/SP (10 minutos da estação de trem São Caetano do Sul)\r\n \r\n# Requisitos\r\n### Obrigatórios:\r\n- Conhecimentos em PHP e frameworks de mercado (Laravel, Symfony, Zend, etc)\r\n- Conhecimentos em MySQL\r\n- Conhecimentos em APIs RESTFul\r\n- Conhecimentos em GIT\r\n- Conhecimentos em HTML, CSS, JavaScript\r\n- Experiência comprovada em desenvolvimento\r\n \r\n### Desejáveis:\r\n- Conhecimentos em Bootstrap\r\n- Conhecimentos em MongoDB\r\n- Conhecimentos em Node.js\r\n \r\n### Diferenciais\r\n- Ambiente informal\r\n- Frutas a vontade\r\n- Vídeo game\r\n- Happy hour mensais\r\n \r\n### Contratação\r\nPJ - A combinar\r\n \r\n### Nossa empresa\r\nA Webfollow é uma plataforma de automação para campanhas de Google Ads.\r\nFoi desenvolvida para facilitar os processos do dia-a-dia das agências de Marketing Digital.\r\nÉ uma empresa pertencente ao grupo WFC, que é composto pela agência Webfoco — uma das mais prestigiadas no mercado — entre outras empresas de tecnologia.\r\nTemos mais de 150 agencias parceiras da plataformas, entre elas a RD Station.\r\n \r\n### Como se candidatar\r\nPor favor envie um email para alex.junior@webfollow.com.br com seu CV anexado e link do seu github - enviar no assunto: Vaga PHP\r\n \r\n ## Labels\r\n\r\n- Júnior\r\n- Pleno\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/549",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/549/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/549/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/549/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/549",
"id": 574669138,
"node_id": "MDU6SXNzdWU1NzQ2NjkxMzg=",
"number": 549,
"title": "[São Paulo/SP] PHP Developer and Technical Leader pela Sour2it",
"user": {
"login": "pugliesi2010",
"id": 60663577,
"node_id": "MDQ6VXNlcjYwNjYzNTc3",
"avatar_url": "https://avatars1.githubusercontent.com/u/60663577?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pugliesi2010",
"html_url": "https://github.com/pugliesi2010",
"followers_url": "https://api.github.com/users/pugliesi2010/followers",
"following_url": "https://api.github.com/users/pugliesi2010/following{/other_user}",
"gists_url": "https://api.github.com/users/pugliesi2010/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pugliesi2010/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pugliesi2010/subscriptions",
"organizations_url": "https://api.github.com/users/pugliesi2010/orgs",
"repos_url": "https://api.github.com/users/pugliesi2010/repos",
"events_url": "https://api.github.com/users/pugliesi2010/events{/privacy}",
"received_events_url": "https://api.github.com/users/pugliesi2010/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-03T13:30:05Z",
"updated_at": "2020-03-03T15:26:29Z",
"closed_at": null,
"author_association": "NONE",
"body": "<!--\r\n==================================================\r\nPOR FAVOR, SÓ POSTE SE A VAGA FOR PARA DESENVOLVEDOR(A) PHP!\r\n\r\nNão faça distinção de gênero no titulo da vaga.\r\n\r\nUse: \"PHP Developer\" ao invés de \"Desenvolvedor PHP\" \\o/\r\n\r\nExemplo: `[São Paulo/SP] PHP Developer na Nome da Empresa`\r\n\r\nEvite fugir do padrão, isso só dá trabalho aos administradores,\r\npois os títulos são padronizados.\r\n==================================================\r\n-->\r\n\r\n## Descrição da vaga\r\n\r\nO profissional terá como responsabilidade, liderança, foco no resultado e cumprimento de prazos (Soft Skill);\r\nRequisitos técnicos: PHP, Ionic, Azure, metodologia ágil.\r\n\r\n## Local\r\n\r\nEscritório, São Paulo/SP - Higienópolis (Próximo à estação Paulista linha amarela).\r\n\r\n## Benefícios\r\n\r\n- Descanso remunerado (após o 12º mês trabalhado)\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n- 3 anos de experiência com PHP 5+\r\n- 3 anos de experiência com Ionic\r\n- 3 anos de experiência com Azure\r\n- Ter atuado com metodologias ágeis.\r\n\r\n## Contratação\r\n\r\nPJ (R$ 10.000,00)\r\n\r\n## Nossa empresa\r\n\r\nSour2it - Outsourcing e Alocação de Recursos Especializados\r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para daniel.pugliesi@source2it.com.br com seu CV anexado - enviar no assunto: Vaga PHP\r\n\r\n## Labels\r\n\r\n### Experiência\r\n- Sênior\r\n- Especialista\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/548",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/548/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/548/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/548/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/548",
"id": 574258948,
"node_id": "MDU6SXNzdWU1NzQyNTg5NDg=",
"number": 548,
"title": "[São Caetano do Sul/SP] PHP Developer na Kymo",
"user": {
"login": "vitorbari",
"id": 1184252,
"node_id": "MDQ6VXNlcjExODQyNTI=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1184252?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vitorbari",
"html_url": "https://github.com/vitorbari",
"followers_url": "https://api.github.com/users/vitorbari/followers",
"following_url": "https://api.github.com/users/vitorbari/following{/other_user}",
"gists_url": "https://api.github.com/users/vitorbari/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vitorbari/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vitorbari/subscriptions",
"organizations_url": "https://api.github.com/users/vitorbari/orgs",
"repos_url": "https://api.github.com/users/vitorbari/repos",
"events_url": "https://api.github.com/users/vitorbari/events{/privacy}",
"received_events_url": "https://api.github.com/users/vitorbari/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-03-02T21:26:47Z",
"updated_at": "2020-03-03T12:19:40Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\nDesenvolvimento e manutenção de sistemas em PHP.\r\n\r\n## Local\r\n\r\nEscritório - São Caetano do Sul /SP\r\n\r\n## Benefícios\r\n\r\n- A combinar\r\n\r\n#### Diferenciais\r\n\r\n- Ambiente informal e acolhedor\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n\r\nConhecimentos / Experiência: \r\n- PHP\r\n- MySQL\r\n- Bootstrap\r\n- Git\r\n\r\n**Desejáveis:**\r\n\r\n- Laravel\r\n- Experiência com ferramentas de envio de emails transacionais (ex Mailgun)\r\n- Configuração servidores (Apache, Nginx, SGBD)\r\n\r\n\r\n## Contratação\r\n\r\nPJ a combinar\r\n\r\n## Nossa empresa\r\n\r\n[Kymo](http://kymo.it/) - Empresa prestadora de serviços de TI em franca expansão, há mais de 15 anos auxiliando seus clientes a atingir a eficiência que buscam e a tranquilidade que merecem.\r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para: ana.ferreira@kymo.it com seu CV anexado e pretensão salarial (PJ) - enviar no assunto: Vaga PHP\r\n\r\n## Labels\r\n\r\n<!-- Escolha abaixo, apague as que não fizerem sentido: -->\r\n### Alocação:\r\n- Presencial\r\n\r\n### Contratação:\r\n- PJ\r\n\r\n### Experiência\r\n- Pleno\r\n- Sênior\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/547",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/547/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/547/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/547/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/547",
"id": 572106785,
"node_id": "MDU6SXNzdWU1NzIxMDY3ODU=",
"number": 547,
"title": "[São Paulo/SP] Desenvolvedor(a) PHP na Hello Soluções",
"user": {
"login": "andersondanilo",
"id": 5572326,
"node_id": "MDQ6VXNlcjU1NzIzMjY=",
"avatar_url": "https://avatars3.githubusercontent.com/u/5572326?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/andersondanilo",
"html_url": "https://github.com/andersondanilo",
"followers_url": "https://api.github.com/users/andersondanilo/followers",
"following_url": "https://api.github.com/users/andersondanilo/following{/other_user}",
"gists_url": "https://api.github.com/users/andersondanilo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/andersondanilo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/andersondanilo/subscriptions",
"organizations_url": "https://api.github.com/users/andersondanilo/orgs",
"repos_url": "https://api.github.com/users/andersondanilo/repos",
"events_url": "https://api.github.com/users/andersondanilo/events{/privacy}",
"received_events_url": "https://api.github.com/users/andersondanilo/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429775845,
"node_id": "MDU6TGFiZWw0Mjk3NzU4NDU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/CLT",
"name": "regime/CLT",
"color": "bfe5bf",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2020-02-27T14:03:54Z",
"updated_at": "2020-03-03T21:23:01Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\nEstamos contratando PHP Developer para trabalhar com Laravel\r\n\r\n## Local\r\nEscritório, São Paulo - República\r\n\r\n## Requisitos\r\n**Obrigatórios:**\r\n\r\n* PHP OO\r\n* Laravel\r\n* Mysql e PgSql\r\n* Javascript ( Node, Jquery ou outro framework)\r\n* MVC\r\n* Bootstrap (Básico)\r\n* Linux\r\n* GIT\r\n\r\n**Desejáveis:**\r\n\r\n* AWS\r\n* Mongo DB\r\n* Redis\r\n* ElasticSearch\r\n* Docker (básico)\r\n\r\n## Contratação\r\nCLT\r\n\r\n## Nossa empresa\r\nA Hello Soluções é uma consultoria cujo principal cliente é uma operadora de turismo que possui diversos produtos, desde hotelaria, receptivo, taxi executivo, aluguel de veículos até aéreo. \r\n\r\n## Como se candidatar\r\nPor favor envie um email para [ewerson@hellosolucoes.com.br](mailto:ewerson@hellosolucoes.com.br) com seu CV anexado - enviar no assunto: Vaga PHP\r\n\r\n## Labels\r\n* Alocado\r\n* CLT\r\n* Pleno\r\n* Senior\r\n\r\n## Alocação\r\n* Presencial\r\n\r\n## Experiência\r\n* Pleno\r\n* Senior\r\n\r\n\r\n"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/546",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/546/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/546/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/546/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/546",
"id": 571814264,
"node_id": "MDU6SXNzdWU1NzE4MTQyNjQ=",
"number": 546,
"title": "[São Paulo/SP] PHP Developer Pleno no Pluggto",
"user": {
"login": "fabriciovieira",
"id": 12838258,
"node_id": "MDQ6VXNlcjEyODM4MjU4",
"avatar_url": "https://avatars1.githubusercontent.com/u/12838258?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fabriciovieira",
"html_url": "https://github.com/fabriciovieira",
"followers_url": "https://api.github.com/users/fabriciovieira/followers",
"following_url": "https://api.github.com/users/fabriciovieira/following{/other_user}",
"gists_url": "https://api.github.com/users/fabriciovieira/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fabriciovieira/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fabriciovieira/subscriptions",
"organizations_url": "https://api.github.com/users/fabriciovieira/orgs",
"repos_url": "https://api.github.com/users/fabriciovieira/repos",
"events_url": "https://api.github.com/users/fabriciovieira/events{/privacy}",
"received_events_url": "https://api.github.com/users/fabriciovieira/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 430889806,
"node_id": "MDU6TGFiZWw0MzA4ODk4MDY=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Presencial",
"name": "alocação/Presencial",
"color": "d4c5f9",
"default": false,
"description": null
},
{
"id": 429776387,
"node_id": "MDU6TGFiZWw0Mjk3NzYzODc=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/Pleno",
"name": "experiência/Pleno",
"color": "009800",
"default": false,
"description": null
},
{
"id": 429776330,
"node_id": "MDU6TGFiZWw0Mjk3NzYzMzA=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/PJ",
"name": "regime/PJ",
"color": "5319e7",
"default": false,
"description": null
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2020-02-27T04:31:57Z",
"updated_at": "2020-02-27T13:44:03Z",
"closed_at": null,
"author_association": "NONE",
"body": "## Descrição da vaga\r\n\r\nEstamos contratando PHP Developer para trabalhar com Laravel, Vue.js e Integrações entre APIs. Que goste de desafios e queira aprender sempre.\r\n\r\n## Local\r\n\r\nEscritório, São Paulo - Barra Funda (5 minutos do metrô)\r\n\r\n## Requisitos\r\n\r\n**Obrigatórios:**\r\n- Sólidos conhecimentos em PHP e framework Laravel\r\n- Sólidos conhecimentos em MySQL\r\n- Sólidos conhecimentos em APIs RESTFul\r\n- Conhecimento de Vue.js\r\n- Conhecimentos em GIT\r\n- Conhecimentos em HTML, CSS, JavaScript\r\n- Experiência significativa comprovada em desenvolvimento\r\n\r\n**Desejáveis:**\r\n- Conhecimentos em Bootstrap e Datatables\r\n- Conhecimentos em MongoDB\r\n- Conhecimentos em Node.js\r\n- Conhecimentos em SOAP\r\n\r\n#### Diferenciais\r\n\r\n- Ambiente informal\r\n- Horário de trabalho flexível\r\n- Aprendizado continuo em novas tecnologias\r\n\r\n## Contratação\r\n\r\nPJ\r\n\r\n## Nossa empresa\r\n\r\nO Plugg.to é um hub de integração de ecommerce que não para de crescer. Somos referência no mercado e o temos integração com mais de 50 plataformas e marktplaces no Brasil. Aqui você terá todo o suporte que precisa para alcançar todo o seu potencial. \r\n\r\n## Como se candidatar\r\n\r\nPor favor envie um email para fabricio.vieira@plugg.to com seu CV anexado - enviar no assunto: Vaga PHP\r\n\r\n## Labels\r\n\r\n- Alocado\r\n- PJ\r\n- Pleno\r\n\r\n## Alocação\r\n- Presencial\r\n\r\n## Experiência\r\n- Pleno"
},
{
"url": "https://api.github.com/repos/phpdevbr/vagas/issues/545",
"repository_url": "https://api.github.com/repos/phpdevbr/vagas",
"labels_url": "https://api.github.com/repos/phpdevbr/vagas/issues/545/labels{/name}",
"comments_url": "https://api.github.com/repos/phpdevbr/vagas/issues/545/comments",
"events_url": "https://api.github.com/repos/phpdevbr/vagas/issues/545/events",
"html_url": "https://github.com/phpdevbr/vagas/issues/545",
"id": 568931334,
"node_id": "MDU6SXNzdWU1Njg5MzEzMzQ=",
"number": 545,
"title": "[São Paulo/SP] PHP Developer Sênior na Deloitte",
"user": {
"login": "diogom-42",
"id": 34948522,
"node_id": "MDQ6VXNlcjM0OTQ4NTIy",
"avatar_url": "https://avatars1.githubusercontent.com/u/34948522?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/diogom-42",
"html_url": "https://github.com/diogom-42",
"followers_url": "https://api.github.com/users/diogom-42/followers",
"following_url": "https://api.github.com/users/diogom-42/following{/other_user}",
"gists_url": "https://api.github.com/users/diogom-42/gists{/gist_id}",
"starred_url": "https://api.github.com/users/diogom-42/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/diogom-42/subscriptions",
"organizations_url": "https://api.github.com/users/diogom-42/orgs",
"repos_url": "https://api.github.com/users/diogom-42/repos",
"events_url": "https://api.github.com/users/diogom-42/events{/privacy}",
"received_events_url": "https://api.github.com/users/diogom-42/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 712401019,
"node_id": "MDU6TGFiZWw3MTI0MDEwMTk=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/aloca%C3%A7%C3%A3o/Flex%C3%ADvel",
"name": "alocação/Flexível",
"color": "006b75",
"default": false,
"description": null
},
{
"id": 429776648,
"node_id": "MDU6TGFiZWw0Mjk3NzY2NDg=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/experi%C3%AAncia/S%C3%AAnior",
"name": "experiência/Sênior",
"color": "0052cc",
"default": false,
"description": null
},
{
"id": 429775845,
"node_id": "MDU6TGFiZWw0Mjk3NzU4NDU=",
"url": "https://api.github.com/repos/phpdevbr/vagas/labels/regime/CLT",
"name": "regime/CLT",
"color": "bfe5bf",
"default": false,