]> _ Git - QuizFactory.git/commit
wip #3436 @1.5
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 26 Feb 2020 15:25:04 +0000 (16:25 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 26 Feb 2020 15:25:04 +0000 (16:25 +0100)
commit3a2deaa513ecb1b4b50ecc92254f5a1f749a8af0
treeda31a448400047c79260120427f4331f2894ff0b
wip #3436 @1.5
88 files changed:
.editorconfig [new file with mode: 0644]
.env.example [new file with mode: 0644]
.gitattributes [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.styleci.yml [new file with mode: 0644]
README.md [new file with mode: 0644]
app/Console/Kernel.php [new file with mode: 0644]
app/Exceptions/Handler.php [new file with mode: 0644]
app/Http/Controllers/Auth/ConfirmPasswordController.php [new file with mode: 0644]
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 [new file with mode: 0644]
app/Http/Controllers/Auth/ResetPasswordController.php [new file with mode: 0644]
app/Http/Controllers/Auth/VerificationController.php [new file with mode: 0644]
app/Http/Controllers/Controller.php [new file with mode: 0644]
app/Http/Kernel.php [new file with mode: 0644]
app/Http/Middleware/Authenticate.php [new file with mode: 0644]
app/Http/Middleware/CheckForMaintenanceMode.php [new file with mode: 0644]
app/Http/Middleware/EncryptCookies.php [new file with mode: 0644]
app/Http/Middleware/RedirectIfAuthenticated.php [new file with mode: 0644]
app/Http/Middleware/TrimStrings.php [new file with mode: 0644]
app/Http/Middleware/TrustProxies.php [new file with mode: 0644]
app/Http/Middleware/VerifyCsrfToken.php [new file with mode: 0644]
app/Providers/AppServiceProvider.php [new file with mode: 0644]
app/Providers/AuthServiceProvider.php [new file with mode: 0644]
app/Providers/BroadcastServiceProvider.php [new file with mode: 0644]
app/Providers/EventServiceProvider.php [new file with mode: 0644]
app/Providers/RouteServiceProvider.php [new file with mode: 0644]
app/User.php [new file with mode: 0644]
artisan [new file with mode: 0644]
bootstrap/app.php [new file with mode: 0644]
bootstrap/cache/.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
composer.lock [new file with mode: 0644]
config/app.php [new file with mode: 0644]
config/auth.php [new file with mode: 0644]
config/broadcasting.php [new file with mode: 0644]
config/cache.php [new file with mode: 0644]
config/database.php [new file with mode: 0644]
config/filesystems.php [new file with mode: 0644]
config/hashing.php [new file with mode: 0644]
config/logging.php [new file with mode: 0644]
config/mail.php [new file with mode: 0644]
config/queue.php [new file with mode: 0644]
config/services.php [new file with mode: 0644]
config/session.php [new file with mode: 0644]
config/view.php [new file with mode: 0644]
database/.gitignore [new file with mode: 0644]
database/factories/UserFactory.php [new file with mode: 0644]
database/migrations/2014_10_12_000000_create_users_table.php [new file with mode: 0644]
database/migrations/2014_10_12_100000_create_password_resets_table.php [new file with mode: 0644]
database/migrations/2019_08_19_000000_create_failed_jobs_table.php [new file with mode: 0644]
database/seeds/DatabaseSeeder.php [new file with mode: 0644]
package-lock.json [new file with mode: 0644]
package.json [new file with mode: 0644]
phpunit.xml [new file with mode: 0644]
public/.htaccess [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.php [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
resources/js/app.js [new file with mode: 0644]
resources/js/bootstrap.js [new file with mode: 0644]
resources/lang/en/auth.php [new file with mode: 0644]
resources/lang/en/pagination.php [new file with mode: 0644]
resources/lang/en/passwords.php [new file with mode: 0644]
resources/lang/en/validation.php [new file with mode: 0644]
resources/sass/app.scss [new file with mode: 0644]
resources/views/welcome.blade.php [new file with mode: 0644]
routes/api.php [new file with mode: 0644]
routes/channels.php [new file with mode: 0644]
routes/console.php [new file with mode: 0644]
routes/web.php [new file with mode: 0644]
server.php [new file with mode: 0644]
storage/app/.gitignore [new file with mode: 0644]
storage/app/public/.gitignore [new file with mode: 0644]
storage/framework/.gitignore [new file with mode: 0644]
storage/framework/cache/.gitignore [new file with mode: 0644]
storage/framework/cache/data/.gitignore [new file with mode: 0644]
storage/framework/sessions/.gitignore [new file with mode: 0644]
storage/framework/testing/.gitignore [new file with mode: 0644]
storage/framework/views/.gitignore [new file with mode: 0644]
storage/logs/.gitignore [new file with mode: 0644]
tests/CreatesApplication.php [new file with mode: 0644]
tests/Feature/ExampleTest.php [new file with mode: 0644]
tests/TestCase.php [new file with mode: 0644]
tests/Unit/ExampleTest.php [new file with mode: 0644]
update [new file with mode: 0644]
webpack.mix.js [new file with mode: 0644]