├── .github ├── issue_template.md ├── stale.yml └── workflows │ └── issue.yml ├── .gitignore ├── LICENSE └── README.md /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | 15 | 16 | ## Descrição da vaga 17 | 18 | Projeto XYZ em Symfony, etc. 19 | 20 | ## Local 21 | 22 | Remoto ou Escritório, São Paulo/SP - Vila Olímpia 23 | 24 | ## Benefícios 25 | 26 | - Plano de saúde 27 | - Seguro de vida 28 | - VR de R$ X/dia 29 | - Auxílio creche 30 | - ... 31 | 32 | #### Diferenciais 33 | 34 | - 2 horas de almoço 35 | - monte a sua máquina como desejar 36 | - frigobar sempre cheio :P 37 | - sala de jogos 38 | - ... 39 | 40 | ## Requisitos 41 | 42 | **Obrigatórios:** 43 | - 3 anos de experiência com PHP 5+ 44 | - 2 anos de experiência com MongoDB 45 | 46 | **Desejáveis:** 47 | - conhecimentos em Laravel 48 | 49 | **Diferenciais:** 50 | - projetos opensource 51 | 52 | ## Contratação 53 | 54 | PJ a combinar 55 | 56 | ## Nossa empresa 57 | 58 | Aqui na Corporação XPTO somos líderes em... 59 | 60 | ## Como se candidatar 61 | 62 | Por favor envie um email para email@email.com.br com seu CV anexado - enviar no assunto: Vaga PHP 63 | 64 | ## Labels 65 | 66 | 67 | ### Alocação: 68 | - Presencial 69 | - Flexível (Remoto parcial) 70 | - Presencial 71 | - Outros (especificar) 72 | 73 | ### Contratação: 74 | - CLT 75 | - PJ 76 | - Freelance 77 | - Estágio 78 | - Outros (especificar) 79 | 80 | ### Experiência 81 | - Estágio 82 | - Júnior 83 | - Pleno 84 | - Sênior 85 | - Especialista 86 | - Outros (especificar) -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-stale - https://github.com/probot/stale 2 | 3 | # Number of days of inactivity before an Issue or Pull Request becomes stale 4 | daysUntilStale: 60 5 | 6 | # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 | # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8 | daysUntilClose: 7 9 | 10 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 11 | exemptLabels: 12 | - pinned 13 | 14 | # Set to true to ignore issues in a project (defaults to false) 15 | exemptProjects: false 16 | 17 | # Set to true to ignore issues in a milestone (defaults to false) 18 | exemptMilestones: false 19 | 20 | # Set to true to ignore issues with an assignee (defaults to false) 21 | exemptAssignees: false 22 | 23 | # Label to use when marking as stale 24 | staleLabel: stale 25 | 26 | # Comment to post when marking as stale. Set to `false` to disable 27 | markComment: > 28 | Essa issue foi marcada como inativa por não ter nenhuma atividade recente. A vaga 29 | ainda está disponível? 30 | Caso não haja nenhuma atividade esta issue será fechada nos próximos 7 dias. 31 | Obrigado por contribuir. 32 | 33 | 34 | # Limit the number of actions per hour, from 1-30. Default is 30 35 | limitPerRun: 30 36 | -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- 1 | name: 'Labeling new issue' 2 | on: 3 | issues: 4 | types: [ 'opened', 'edited' ] 5 | 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: Renato66/auto-label@v2 11 | with: 12 | repo-token: ${{ secrets.GITHUB_TOKEN }} 13 | labels-not-allowed: '["stale"]' 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 - current phpdevbr and frontendbr 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
:microscope: Espaço para divulgação de vagas para desenvolvedores PHP.
6 | 7 | # Vagas (Somente vagas de desenvolvedores PHP) 8 | 9 | Espaço para a divulgação de vagas para desenvolvedores via _issues_ do Github. 10 | 11 | Vagas disponíveis em https://github.com/phpdevbr/vagas/issues 12 | 13 | ### Cadastrando uma vaga 14 | 15 | Abra uma **issue** e, no titulo desta _issue_, coloque o nome da cidade entre colchetes seguido do nome da vaga e nome da empresa. 16 | 17 | Exemplo: `[São Paulo/SP] PHP Developer na Nome da Empresa` 18 | 19 | Informe quais _labels_ devemos adicionar, contendo o nível de experiência desejada, forma de contração e alocação. 20 | 21 | **Atenção**: Não aceitaremos vagas sem o nome da empresa contratante. 22 | 23 | ## Como receber atualizações das vagas 24 | 25 | Você pode receber atualizações das vagas no seu email ou via notificações do GitHub, basta clicar em **Watch** e, em seguida, clicar em **Watching** no canto superior direito da interface do site, próximo a sua foto de perfil. 26 | 27 |
28 |
29 |