-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Halim
authored and
Halim
committed
Nov 7, 2016
1 parent
93f722f
commit 1676fae
Showing
5,551 changed files
with
635,785 additions
and
46 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
APP_ENV=local | ||
APP_KEY=base64:EpAGTCQXbXyJ5HkVMgRPowbixAg/41UpSzFTSAbP96U= | ||
APP_DEBUG=true | ||
APP_LOG_LEVEL=debug | ||
APP_URL=http://localhost | ||
|
||
DB_CONNECTION=mysql | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_DATABASE=laravel-crud | ||
DB_USERNAME=root | ||
DB_PASSWORD= | ||
|
||
BROADCAST_DRIVER=log | ||
CACHE_DRIVER=file | ||
SESSION_DRIVER=file | ||
QUEUE_DRIVER=sync | ||
|
||
REDIS_HOST=127.0.0.1 | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
MAIL_DRIVER=smtp | ||
MAIL_HOST=mailtrap.io | ||
MAIL_PORT=2525 | ||
MAIL_USERNAME=null | ||
MAIL_PASSWORD=null | ||
MAIL_ENCRYPTION=null | ||
|
||
PUSHER_APP_ID= | ||
PUSHER_KEY= | ||
PUSHER_SECRET= |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/node_modules | ||
/public/storage | ||
/vendor | ||
/.idea | ||
Homestead.json | ||
Homestead.yaml | ||
.env | ||
|
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
// autoload.php @generated by Composer | ||
|
||
require_once __DIR__ . '/composer' . '/autoload_real.php'; | ||
|
||
return ComposerAutoloaderInita204dc84e12a110d387420359dd2eee9::getLoader(); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env sh | ||
|
||
dir=$(d=${0%[/\\]*}; cd "$d"; cd "../nikic/php-parser/bin" && pwd) | ||
|
||
# See if we are running in Cygwin by checking for cygpath program | ||
if command -v 'cygpath' >/dev/null 2>&1; then | ||
# Cygwin paths start with /cygdrive/ which will break windows PHP, | ||
# so we need to translate the dir path to windows format. However | ||
# we could be using cygwin PHP which does not require this, so we | ||
# test if the path to PHP starts with /cygdrive/ rather than /usr/bin | ||
if [[ $(which php) == /cygdrive/* ]]; then | ||
dir=$(cygpath -m "$dir"); | ||
fi | ||
fi | ||
|
||
dir=$(echo $dir | sed 's/ /\ /g') | ||
"${dir}/php-parse" "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@ECHO OFF | ||
setlocal DISABLEDELAYEDEXPANSION | ||
SET BIN_TARGET=%~dp0/../nikic/php-parser/bin/php-parse | ||
php "%BIN_TARGET%" %* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env sh | ||
|
||
dir=$(d=${0%[/\\]*}; cd "$d"; cd "../phpunit/phpunit" && pwd) | ||
|
||
# See if we are running in Cygwin by checking for cygpath program | ||
if command -v 'cygpath' >/dev/null 2>&1; then | ||
# Cygwin paths start with /cygdrive/ which will break windows PHP, | ||
# so we need to translate the dir path to windows format. However | ||
# we could be using cygwin PHP which does not require this, so we | ||
# test if the path to PHP starts with /cygdrive/ rather than /usr/bin | ||
if [[ $(which php) == /cygdrive/* ]]; then | ||
dir=$(cygpath -m "$dir"); | ||
fi | ||
fi | ||
|
||
dir=$(echo $dir | sed 's/ /\ /g') | ||
"${dir}/phpunit" "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@ECHO OFF | ||
setlocal DISABLEDELAYEDEXPANSION | ||
SET BIN_TARGET=%~dp0/../phpunit/phpunit/phpunit | ||
php "%BIN_TARGET%" %* |
Oops, something went wrong.