]> git.localhorst.tv Git - alttp.git/commit
install laravel
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Mar 2022 08:56:40 +0000 (09:56 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Mar 2022 08:56:40 +0000 (09:56 +0100)
commit4bf2dd1dd1f6d31b2ebe299b7495a8b0e259ec77
treeca639647da679775789bfb5ed9fd8ae76c222251
install laravel
84 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/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/EncryptCookies.php [new file with mode: 0644]
app/Http/Middleware/PreventRequestsDuringMaintenance.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/TrustHosts.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/Models/User.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]
artisan [new file with mode: 0755]
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/cors.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/sanctum.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/migrations/2019_12_14_000001_create_personal_access_tokens_table.php [new file with mode: 0644]
database/seeders/DatabaseSeeder.php [new file with mode: 0644]
lang/en.json [new file with mode: 0644]
lang/en/auth.php [new file with mode: 0644]
lang/en/pagination.php [new file with mode: 0644]
lang/en/passwords.php [new file with mode: 0644]
lang/en/validation.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/favicon.ico [new file with mode: 0644]
public/index.php [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
resources/css/app.css [new file with mode: 0644]
resources/js/app.js [new file with mode: 0644]
resources/js/bootstrap.js [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]
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]