This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Requisitos | |
- Conhecimentos avançados em PHP e Orientação a Objetos | |
- Conhecimentos avançados em algum framework como Zend Framework 2, Silex ou Symfony | |
- Conhecimentos intermediários em Doctrine 2 (entidades, relacionamentos, dql) | |
- Conhecimentos avançados em testes unitários | |
- Interesse e facilidade em aprender novas tecnologias, linguagens de programação e ambientes de desenvolvimento | |
- Conhecimentos intermediários em banco de dados como MySQL e PostgreSQL | |
- Conhecimentos intermediários em Git | |
- Conhecimento básico de segurança e criptografia de dados: | |
- SSL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1-http://www.projetobrasil.org/#!/ | |
2-http://www.atlaspolitico.com.br/ | |
3- http://www.votehoje.com.br/home | |
4- http://www.tse.jus.br/eleicoes/estatisticas/repositorio-de-dados-eleitorais | |
5-http://www.politicos.org.br/ | |
6-http://www.excelencias.org.br/ | |
7-http://www.justicaeleitoral.jus.br/ | |
8-https://eleicoeslimpas.org.br/assine | |
9-http://super.abril.com.br/blogs/superlistas/6-sites-para-ajudar-voce- | |
a-escolher-seus-candidatos-nessas-eleicoes/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@servers(['production' => 'productionserver', 'local'=> '[email protected] -p 2222']) | |
{{-- Configuration section --}} | |
@setup | |
/* | |
|-------------------------------------------------------------------------- | |
| Git Config | |
|-------------------------------------------------------------------------- | |
| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"workbench.iconTheme": "vscode-icons", | |
"window.zoomLevel": 1, | |
"window.title": "${dirty}${rootName}${separator}${activeEditorMedium}${separator}${appName}", | |
"editor.fontSize": 16, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Styles */ | |
} | |
/* Smartphones (landscape) ----------- */ | |
@media only screen | |
and (min-width : 321px) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global_config] | |
always_on_top = True | |
borderless = True | |
enabled_plugins = LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
sticky = True | |
tab_position = bottom | |
[keybindings] | |
hide_window = F12 | |
[layouts] | |
[[default]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\Log; | |
class AppServiceProvider extends ServiceProvider | |
{ |
OlderNewer