]> BookStack Code Mirror - bookstack/commit
Laravel 5.3 upgrade (#189)
authorDan Brown <redacted>
Sat, 17 Sep 2016 17:22:04 +0000 (18:22 +0100)
committerGitHub <redacted>
Sat, 17 Sep 2016 17:22:04 +0000 (18:22 +0100)
commit9dc9724e15bdd6d2bd316f7fa24592da72124bc5
treed84245b7197220e0edda384d163163e95c3e17d9
parent393f6047f26a0f6f44cf29cacd85c36cc196e077
Laravel 5.3 upgrade (#189)

* Started move to laravel 5.3

* Started updating login & registration flows for laravel 5.3 update

* Updated app emails to notification system

* Fixed registations bugs and removed email confirmation model

* Fixed large portion of laravel post-upgrade issues

* Fixed and tested LDAP process
44 files changed:
.gitignore
app/EmailConfirmation.php [deleted file]
app/Events/Event.php [deleted file]
app/Exceptions/Handler.php
app/Http/Controllers/Auth/ForgotPasswordController.php [new file with mode: 0644]
app/Http/Controllers/Auth/LoginController.php [new file with mode: 0644]
app/Http/Controllers/Auth/RegisterController.php [moved from app/Http/Controllers/Auth/AuthController.php with 68% similarity]
app/Http/Controllers/Auth/ResetPasswordController.php [moved from app/Http/Controllers/Auth/PasswordController.php with 82% similarity]
app/Http/Controllers/Controller.php
app/Http/Kernel.php
app/Http/Middleware/Authenticate.php
app/Http/Middleware/RedirectIfAuthenticated.php
app/Jobs/Job.php [deleted file]
app/Listeners/.gitkeep [deleted file]
app/Notifications/ConfirmEmail.php [new file with mode: 0644]
app/Notifications/ResetPassword.php [new file with mode: 0644]
app/Providers/BroadcastServiceProvider.php [new file with mode: 0644]
app/Providers/EventServiceProvider.php
app/Providers/PaginationServiceProvider.php
app/Providers/RouteServiceProvider.php
app/Repos/PageRepo.php
app/Services/EmailConfirmationService.php
app/Services/PermissionService.php
app/User.php
app/helpers.php
composer.json
composer.lock
config/app.php
database/migrations/2015_08_29_105422_add_roles_and_permissions.php
phpspec.yml [deleted file]
resources/lang/en/auth.php [new file with mode: 0644]
resources/views/auth/passwords/email.blade.php [moved from resources/views/auth/password.blade.php with 100% similarity]
resources/views/auth/passwords/reset.blade.php [moved from resources/views/auth/reset.blade.php with 100% similarity]
resources/views/emails/email-confirmation.blade.php [deleted file]
resources/views/emails/password.blade.php [deleted file]
resources/views/users/index.blade.php
resources/views/vendor/.gitkeep [deleted file]
resources/views/vendor/notifications/email-plain.blade.php [new file with mode: 0644]
resources/views/vendor/notifications/email.blade.php [new file with mode: 0644]
routes/web.php [moved from app/Http/routes.php with 84% similarity]
tests/Auth/AuthTest.php
tests/Entity/EntityTest.php
tests/Entity/PageDraftTest.php
tests/ImageTest.php