Skip to content

Instantly share code, notes, and snippets.

View josecarlosfiel's full-sized avatar

Jose Carlos Fiel josecarlosfiel

  • Fiel Code
  • Brasília/DF
View GitHub Profile
@josecarlosfiel
josecarlosfiel / ValetSwitchPHP.md
Created July 9, 2018 17:52 — forked from bgarrant/ValetSwitchPHP.md
How to Switch PHP Version in Laravel Valet between PHP 7.1 and PHP 5.6

Valet switch PHP version with these commands

Install PHP 5.6 and switch Valet to PHP 5.6

valet stop
brew unlink php71
brew install php56
brew install php56-mcrypt
brew link php56
valet start
@josecarlosfiel
josecarlosfiel / settings.json
Created June 4, 2018 19:20
Visual Studio Code User Settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 17,
"editor.lineHeight": 25,
"editor.fontWeight": "400",
"editor.tabSize": 2,
"editor.renderIndentGuides": true,
"editor.parameterHints": false,
"editor.formatOnPaste": true,
@josecarlosfiel
josecarlosfiel / .eslintrc
Last active June 4, 2018 18:47
Eslint file for React Native
{
"parser": "babel-eslint",
"plugins": [
"react-native",
"jsx-a11y",
"import"
],
"extends": [
"airbnb",
"plugin:react-native/all"