]> _ Git - extranet.git/commit
wip #2413 @1
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 7 Dec 2018 14:19:16 +0000 (15:19 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 7 Dec 2018 14:19:16 +0000 (15:19 +0100)
commit8688d4b9fdd32ebf3ba21efeefa30d5954de7e1b
tree9e3233bd773e7ba9450ff885f156bbdcdc8a51c9
wip #2413 @1
90 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]
app/Console/Kernel.php [new file with mode: 0644]
app/Exceptions/Handler.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/seeds/DatabaseSeeder.php [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/css/app.css [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.php [new file with mode: 0644]
public/js/app.js [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
public/svg/403.svg [new file with mode: 0644]
public/svg/404.svg [new file with mode: 0644]
public/svg/500.svg [new file with mode: 0644]
public/svg/503.svg [new file with mode: 0644]
resources/js/app.js [new file with mode: 0644]
resources/js/bootstrap.js [new file with mode: 0644]
resources/js/components/ExampleComponent.vue [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/_variables.scss [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]
webpack.mix.js [new file with mode: 0644]