-
-
Notifications
You must be signed in to change notification settings - Fork 998
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
complete overhaul on Laravel 5.4, major cleanup throughout project, r…
…oles switched to package
- Loading branch information
1 parent
a7a8601
commit f5abeb6
Showing
286 changed files
with
68,140 additions
and
19,807 deletions.
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
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,89 @@ | ||
APP_ENV=local | ||
APP_KEY= | ||
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=laravelAuth | ||
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 | ||
|
||
MAIL_FROM_ADDRESS= | ||
MAIL_FROM_NAME='' | ||
|
||
PUSHER_APP_ID= | ||
PUSHER_APP_KEY= | ||
PUSHER_APP_SECRET= | ||
|
||
ACTIVATION=true | ||
ACTIVATION_LIMIT_TIME_PERIOD=24 | ||
ACTIVATION_LIMIT_MAX_ATTEMPTS=3 | ||
|
||
// NOTE: YOU CAN REMOVE THE KEY CALL IN app.blade.php IF YOU GET A POP UP AND DO NOT WANT TO SETUP A KEY FOR DEV | ||
# Google Maps API v3 Key - https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key | ||
GOOGLEMAPS_API_KEY=YOURGOOGLEMAPSkeyHERE | ||
|
||
# https://console.developers.google.com/ - NEED OAUTH CREDS | ||
GOOGLE_ID=YOURGOOGLEPLUSidHERE | ||
GOOGLE_SECRET=YOURGOOGLEPLUSsecretHERE | ||
GOOGLE_REDIRECT=http://yourwebsiteURLhere.com/social/handle/google | ||
|
||
# https://www.google.com/recaptcha/admin#list | ||
RE_CAP_SITE=YOURGOOGLECAPTCHAsitekeyHERE | ||
RE_CAP_SECRET=YOURGOOGLECAPTCHAsecretHERE | ||
|
||
# https://developers.facebook.com/ | ||
FB_ID=YOURFACEBOOKidHERE | ||
FB_SECRET=YOURFACEBOOKsecretHERE | ||
FB_REDIRECT=http://yourwebsiteURLhere.com/social/handle/facebook | ||
|
||
# https://apps.twitter.com/ | ||
TW_ID=YOURTWITTERidHERE | ||
TW_SECRET=YOURTWITTERkeyHERE | ||
TW_REDIRECT=http://yourwebsiteURLhere.com/social/handle/twitter | ||
|
||
# https://github.com/settings/applications/new | ||
GITHUB_ID=YOURIDHERE | ||
GITHUB_SECRET=YOURSECRETHERE | ||
GITHUB_URL=https://larablog.io/social/handle/github | ||
|
||
# https://developers.google.com/youtube/v3/getting-started | ||
YOUTUBE_KEY=YOURKEYHERE | ||
YOUTUBE_SECRET=YOURSECRETHERE | ||
YOUTUBE_REDIRECT_URI=https://larablog.io/social/handle/youtube | ||
|
||
# http://www.twitch.tv/kraken/oauth2/clients/new | ||
TWITCH_KEY=YOURKEYHERE | ||
TWITCH_SECRET=YOURSECRETHERE | ||
TWITCH_REDIRECT_URI=http://laravel-authentication.local/social/handle/twitch | ||
|
||
# https://instagram.com/developer/register/ | ||
INSTAGRAM_KEY=YOURKEYHERE | ||
INSTAGRAM_SECRET=YOURSECRETHERE | ||
INSTAGRAM_REDIRECT_URI=http://laravel-authentication.local/social/handle/instagram | ||
|
||
# https://basecamp.com/ | ||
# https://github.com/basecamp/basecamp-classic-api | ||
37SIGNALS_KEY=YOURKEYHERE | ||
37SIGNALS_SECRET=YOURSECRETHERE | ||
37SIGNALS_REDIRECT_URI=http://laravel-authentication.local/social/handle/37signals | ||
|
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,3 +1,3 @@ | ||
* text=auto | ||
*.css linguist-vendored | ||
*.less linguist-vendored | ||
*.scss linguist-vendored |
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,26 @@ | ||
language: php | ||
|
||
php: | ||
|
||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- hhvm | ||
|
||
services: | ||
- mysql | ||
|
||
before_script: | ||
- cp .env.travis .env | ||
- mysql -u root -e 'create database laravelAuth;' | ||
- composer self-update | ||
- composer install --dev --prefer-source --no-interaction | ||
- php artisan key:generate | ||
- php artisan migrate:install --env=testing --no-interaction | ||
- composer dump-autoload | ||
- php artisan db:seed | ||
- sudo chgrp -R www-data storage bootstrap/cache | ||
- sudo chmod -R ug+rwx storage bootstrap/cache | ||
- sudo php artisan config:cache | ||
|
||
script: vendor/bin/phpspec run |
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
Oops, something went wrong.