This file contains 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
alias start='cd /d/Codes/homestead; homestead up' | |
alias hu='homestead up' | |
alias hh='homestead halt' | |
alias hp='homestead provision' | |
alias ..='cd ..' | |
alias pa='php artisan' | |
alias gs='git status' | |
alias gc='git checkout' | |
alias gp='git pull' | |
alias gpo='git pull origin' |
This file contains 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
{ | |
"phpcs_additional_args": { | |
"--standard": "PSR2", | |
"-n": "" | |
}, | |
// PHP_CodeSniffer settings | |
"phpcs_command_on_save": false, | |
"phpcs_executable_path": "/usr/bin/phpcs", | |
// PHP Mess Detector settings |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Monokai</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
This file contains 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
<VirtualHost *:80> | |
DocumentRoot "C:/xampp/htdocs/laravel/public" | |
ServerName simss.dev | |
<Directory "C:/xampp/htdocs/laravel/public"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> |
NewerOlder