Merge branch 'danielmiessler:master' into master

This commit is contained in:
Zerbaliy3v 2024-02-11 16:29:32 +04:00 committed by GitHub
commit 3a25934d29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
91 changed files with 1736716 additions and 1727378 deletions

View File

@ -1,159 +1,158 @@
composer.json
tests/CreatesApplication.php
tests/Unit/ExampleTest.php
tests/Feature/ExampleTest.php
tests/Feature/Auth/RegistrationTest.php
tests/Feature/Auth/AuthenticationTest.php
tests/Feature/Auth/EmailVerificationTest.php
tests/Feature/Auth/PasswordResetTest.php
tests/Feature/Auth/PasswordUpdateTest.php
tests/Feature/Auth/PasswordConfirmationTest.php
tests/Feature/ProfileTest.php
tests/TestCase.php
resources/js/app.js
resources/js/bootstrap.js
resources/views/welcome.blade.php
resources/views/dashboard.blade.php
resources/views/errors/403.blade.php
resources/views/errors/layout.blade.php
resources/views/errors/419.blade.php
resources/views/errors/404.blade.php
resources/views/errors/minimal.blade.php
resources/views/errors/500.blade.php
resources/views/errors/429.blade.php
resources/views/errors/503.blade.php
resources/views/errors/401.blade.php
resources/views/layouts/navigation.blade.php
resources/views/layouts/guest.blade.php
resources/views/layouts/app.blade.php
resources/views/components/responsive-nav-link.blade.php
resources/views/components/danger-button.blade.php
resources/views/components/primary-button.blade.php
resources/views/components/label.blade.php
resources/views/components/text-input.blade.php
resources/views/components/input.blade.php
resources/views/components/modal.blade.php
resources/views/components/secondary-button.blade.php
resources/views/components/auth-validation-errors.blade.php
resources/views/components/button.blade.php
resources/views/components/dropdown-link.blade.php
resources/views/components/application-logo.blade.php
resources/views/components/dropdown.blade.php
resources/views/components/auth-card.blade.php
resources/views/components/auth-session-status.blade.php
resources/views/components/nav-link.blade.php
resources/views/components/input-error.blade.php
resources/views/components/input-label.blade.php
resources/views/auth/forgot-password.blade.php
resources/views/auth/register.blade.php
resources/views/auth/login.blade.php
resources/views/auth/reset-password.blade.php
resources/views/auth/verify-email.blade.php
resources/views/auth/confirm-password.blade.php
resources/views/vendor/mail/text/subcopy.blade.php
resources/views/vendor/mail/text/layout.blade.php
resources/views/vendor/mail/text/panel.blade.php
resources/views/vendor/mail/text/message.blade.php
resources/views/vendor/mail/text/button.blade.php
resources/views/vendor/mail/text/table.blade.php
resources/views/vendor/mail/text/header.blade.php
resources/views/vendor/mail/text/footer.blade.php
resources/views/vendor/mail/html/subcopy.blade.php
resources/views/vendor/mail/html/layout.blade.php
resources/views/vendor/mail/html/panel.blade.php
resources/views/vendor/mail/html/message.blade.php
resources/views/vendor/mail/html/button.blade.php
resources/views/vendor/mail/html/table.blade.php
resources/views/vendor/mail/html/header.blade.php
resources/views/vendor/mail/html/footer.blade.php
resources/views/vendor/pagination/default.blade.php
resources/views/vendor/pagination/simple-tailwind.blade.php
resources/views/vendor/pagination/tailwind.blade.php
resources/views/vendor/pagination/bootstrap-5.blade.php
resources/views/vendor/pagination/simple-default.blade.php
resources/views/vendor/pagination/bootstrap-4.blade.php
resources/views/vendor/pagination/simple-bootstrap-4.blade.php
resources/views/vendor/pagination/simple-bootstrap-5.blade.php
resources/views/vendor/pagination/semantic-ui.blade.php
resources/views/vendor/notifications/email.blade.php
resources/views/profile/partials/update-profile-information-form.blade.php
resources/views/profile/partials/update-password-form.blade.php
resources/views/profile/partials/delete-user-form.blade.php
resources/views/profile/edit.blade.php
tailwind.config.js
artisan artisan
packages/.gitkeep routes/console.php
package.json routes/channels.php
vite.config.js routes/auth.php
database/seeders/DatabaseSeeder.php routes/web.php
database/factories/UserFactory.php routes/api.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php postcss.config.js
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php SECURITY.md
.editorconfig
database/migrations/2014_10_12_100000_create_password_resets_table.php database/migrations/2014_10_12_100000_create_password_resets_table.php
database/migrations/2014_10_12_000000_create_users_table.php database/migrations/2014_10_12_000000_create_users_table.php
.gitattributes database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
.styleci.yml database/migrations/2019_08_19_000000_create_failed_jobs_table.php
.env.example database/seeders/DatabaseSeeder.php
.editorconfig database/factories/UserFactory.php
config/mail.php
config/filesystems.php
config/auth.php
config/app.php
config/view.php
config/broadcasting.php
config/sanctum.php
config/cache.php
config/logging.php
config/cors.php
config/tinker.php
config/database.php
config/session.php
config/ignition.php
config/hashing.php
config/shop.php
config/queue.php
config/services.php config/services.php
config/cache.php
config/auth.php
config/tinker.php
config/app.php
config/database.php
config/mail.php
config/sanctum.php
config/queue.php
config/filesystems.php
config/session.php
config/hashing.php
config/cors.php
config/view.php
config/ignition.php
config/flare.php config/flare.php
app/Exceptions/Handler.php config/shop.php
app/Models/User.php config/logging.php
app/Console/Kernel.php config/broadcasting.php
app/Composer.php composer.json
app/Http/Kernel.php README.md
app/Http/Requests/ProfileUpdateRequest.php
app/Http/Requests/Auth/LoginRequest.php
app/Http/Controllers/Controller.php
app/Http/Controllers/Auth/ConfirmablePasswordController.php
app/Http/Controllers/Auth/PasswordController.php
app/Http/Controllers/Auth/EmailVerificationNotificationController.php
app/Http/Controllers/Auth/NewPasswordController.php
app/Http/Controllers/Auth/RegisteredUserController.php
app/Http/Controllers/Auth/PasswordResetLinkController.php
app/Http/Controllers/Auth/AuthenticatedSessionController.php
app/Http/Controllers/Auth/VerifyEmailController.php app/Http/Controllers/Auth/VerifyEmailController.php
app/Http/Controllers/Auth/AuthenticatedSessionController.php
app/Http/Controllers/Auth/EmailVerificationPromptController.php app/Http/Controllers/Auth/EmailVerificationPromptController.php
app/Http/Controllers/Auth/EmailVerificationNotificationController.php
app/Http/Controllers/Auth/ConfirmablePasswordController.php
app/Http/Controllers/Auth/NewPasswordController.php
app/Http/Controllers/Auth/PasswordResetLinkController.php
app/Http/Controllers/Auth/PasswordController.php
app/Http/Controllers/Auth/RegisteredUserController.php
app/Http/Controllers/Controller.php
app/Http/Controllers/ProfileController.php app/Http/Controllers/ProfileController.php
app/Http/Middleware/TrustHosts.php
app/Http/Middleware/EncryptCookies.php
app/Http/Middleware/Authenticate.php app/Http/Middleware/Authenticate.php
app/Http/Middleware/TrimStrings.php app/Http/Middleware/TrimStrings.php
app/Http/Middleware/TrustHosts.php
app/Http/Middleware/PreventRequestsDuringMaintenance.php
app/Http/Middleware/RedirectIfAuthenticated.php
app/Http/Middleware/VerifyCsrfToken.php app/Http/Middleware/VerifyCsrfToken.php
app/Http/Middleware/EncryptCookies.php
app/Http/Middleware/EnsureEmailIsVerified.php
app/Http/Middleware/SetLocale.php app/Http/Middleware/SetLocale.php
app/Http/Middleware/EnsureEmailIsVerified.php
app/Http/Middleware/PreventRequestsDuringMaintenance.php
app/Http/Middleware/TrustProxies.php app/Http/Middleware/TrustProxies.php
app/View/Components/AppLayout.php app/Http/Middleware/RedirectIfAuthenticated.php
app/Http/Requests/Auth/LoginRequest.php
app/Http/Requests/ProfileUpdateRequest.php
app/Http/Kernel.php
app/Console/Kernel.php
app/View/Components/GuestLayout.php app/View/Components/GuestLayout.php
app/View/Components/AppLayout.php
app/Models/User.php
app/Composer.php
app/Exceptions/Handler.php
app/Providers/BroadcastServiceProvider.php
app/Providers/RouteServiceProvider.php app/Providers/RouteServiceProvider.php
app/Providers/AuthServiceProvider.php app/Providers/AuthServiceProvider.php
app/Providers/AppServiceProvider.php app/Providers/AppServiceProvider.php
app/Providers/BroadcastServiceProvider.php
app/Providers/EventServiceProvider.php app/Providers/EventServiceProvider.php
README.md public/robots.txt
public/js/app.js
public/index.php
public/.htaccess
public/mix-manifest.json
public/build/assets/app-c0da5701.js
public/build/manifest.json
phpunit.xml
resources/js/app.js
resources/js/bootstrap.js
resources/views/dashboard.blade.php
resources/views/auth/forgot-password.blade.php
resources/views/auth/verify-email.blade.php
resources/views/auth/confirm-password.blade.php
resources/views/auth/register.blade.php
resources/views/auth/reset-password.blade.php
resources/views/auth/login.blade.php
resources/views/welcome.blade.php
resources/views/profile/partials/delete-user-form.blade.php
resources/views/profile/partials/update-profile-information-form.blade.php
resources/views/profile/partials/update-password-form.blade.php
resources/views/profile/edit.blade.php
resources/views/components/dropdown.blade.php
resources/views/components/input-error.blade.php
resources/views/components/button.blade.php
resources/views/components/input.blade.php
resources/views/components/application-logo.blade.php
resources/views/components/auth-card.blade.php
resources/views/components/secondary-button.blade.php
resources/views/components/danger-button.blade.php
resources/views/components/auth-validation-errors.blade.php
resources/views/components/label.blade.php
resources/views/components/modal.blade.php
resources/views/components/responsive-nav-link.blade.php
resources/views/components/dropdown-link.blade.php
resources/views/components/text-input.blade.php
resources/views/components/primary-button.blade.php
resources/views/components/nav-link.blade.php
resources/views/components/input-label.blade.php
resources/views/components/auth-session-status.blade.php
resources/views/vendor/mail/html/button.blade.php
resources/views/vendor/mail/html/footer.blade.php
resources/views/vendor/mail/html/table.blade.php
resources/views/vendor/mail/html/subcopy.blade.php
resources/views/vendor/mail/html/layout.blade.php
resources/views/vendor/mail/html/panel.blade.php
resources/views/vendor/mail/html/header.blade.php
resources/views/vendor/mail/html/message.blade.php
resources/views/vendor/mail/text/button.blade.php
resources/views/vendor/mail/text/footer.blade.php
resources/views/vendor/mail/text/table.blade.php
resources/views/vendor/mail/text/subcopy.blade.php
resources/views/vendor/mail/text/layout.blade.php
resources/views/vendor/mail/text/panel.blade.php
resources/views/vendor/mail/text/header.blade.php
resources/views/vendor/mail/text/message.blade.php
resources/views/vendor/notifications/email.blade.php
resources/views/vendor/pagination/simple-bootstrap-5.blade.php
resources/views/vendor/pagination/simple-tailwind.blade.php
resources/views/vendor/pagination/bootstrap-4.blade.php
resources/views/vendor/pagination/tailwind.blade.php
resources/views/vendor/pagination/simple-default.blade.php
resources/views/vendor/pagination/default.blade.php
resources/views/vendor/pagination/bootstrap-5.blade.php
resources/views/vendor/pagination/simple-bootstrap-4.blade.php
resources/views/vendor/pagination/semantic-ui.blade.php
resources/views/errors/404.blade.php
resources/views/errors/419.blade.php
resources/views/errors/layout.blade.php
resources/views/errors/minimal.blade.php
resources/views/errors/403.blade.php
resources/views/errors/500.blade.php
resources/views/errors/401.blade.php
resources/views/errors/429.blade.php
resources/views/errors/503.blade.php
resources/views/layouts/navigation.blade.php
resources/views/layouts/app.blade.php
resources/views/layouts/guest.blade.php
.styleci.yml
tailwind.config.js
.gitattributes
package.json
vite.config.js
docker-compose.yml docker-compose.yml
bootstrap/app.php
LICENSE
postcss.config.js
lang/en.json lang/en.json
lang/en/auth.php lang/en/auth.php
lang/en/passwords.php lang/en/passwords.php
@ -163,18 +162,19 @@ lang/de/auth.php
lang/de/passwords.php lang/de/passwords.php
lang/de/validation.php lang/de/validation.php
lang/de/pagination.php lang/de/pagination.php
routes/auth.php package-lock.json
routes/channels.php LICENSE
routes/console.php packages/.gitkeep
routes/web.php bootstrap/app.php
routes/api.php tests/TestCase.php
SECURITY.md tests/Feature/Auth/AuthenticationTest.php
public/robots.txt tests/Feature/Auth/PasswordConfirmationTest.php
public/index.php tests/Feature/Auth/RegistrationTest.php
public/build/assets/app-c0da5701.js tests/Feature/Auth/EmailVerificationTest.php
public/build/manifest.json tests/Feature/Auth/PasswordResetTest.php
public/mix-manifest.json tests/Feature/Auth/PasswordUpdateTest.php
public/js/app.js tests/Feature/ProfileTest.php
public/.htaccess tests/Feature/ExampleTest.php
phpunit.xml tests/Unit/ExampleTest.php
package-lock.json tests/CreatesApplication.php
.env.example

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,95 +1,80 @@
composer.json
tests/CreatesApplication.php
CreatesApplication.php
tests/Unit/ExampleTest.php
Unit/ExampleTest.php
ExampleTest.php
tests/Feature/ExampleTest.php
Feature/ExampleTest.php
ExampleTest.php
tests/TestCase.php
TestCase.php
resources/js/app.js
js/app.js
app.js
resources/js/bootstrap.js
js/bootstrap.js
bootstrap.js
resources/views/welcome.blade.php
views/welcome.blade.php
welcome.blade.php
artisan artisan
package.json routes/console.php
vite.config.js console.php
CHANGELOG.md routes/channels.php
channels.php
routes/web.php
web.php
routes/api.php
api.php
.editorconfig
database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php
migrations/2014_10_12_100000_create_password_reset_tokens_table.php
2014_10_12_100000_create_password_reset_tokens_table.php
database/migrations/2014_10_12_000000_create_users_table.php
migrations/2014_10_12_000000_create_users_table.php
2014_10_12_000000_create_users_table.php
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
migrations/2019_12_14_000001_create_personal_access_tokens_table.php
2019_12_14_000001_create_personal_access_tokens_table.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php
migrations/2019_08_19_000000_create_failed_jobs_table.php
2019_08_19_000000_create_failed_jobs_table.php
database/seeders/DatabaseSeeder.php database/seeders/DatabaseSeeder.php
seeders/DatabaseSeeder.php seeders/DatabaseSeeder.php
DatabaseSeeder.php DatabaseSeeder.php
database/factories/UserFactory.php database/factories/UserFactory.php
factories/UserFactory.php factories/UserFactory.php
UserFactory.php UserFactory.php
database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php config/services.php
migrations/2014_10_12_100000_create_password_reset_tokens_table.php services.php
2014_10_12_100000_create_password_reset_tokens_table.php config/cache.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php cache.php
migrations/2019_08_19_000000_create_failed_jobs_table.php
2019_08_19_000000_create_failed_jobs_table.php
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
migrations/2019_12_14_000001_create_personal_access_tokens_table.php
2019_12_14_000001_create_personal_access_tokens_table.php
database/migrations/2014_10_12_000000_create_users_table.php
migrations/2014_10_12_000000_create_users_table.php
2014_10_12_000000_create_users_table.php
.gitattributes
.styleci.yml
.env.example
.editorconfig
config/mail.php
mail.php
config/filesystems.php
filesystems.php
config/auth.php config/auth.php
auth.php auth.php
config/app.php config/app.php
app.php app.php
config/view.php
view.php
config/broadcasting.php
broadcasting.php
config/sanctum.php
sanctum.php
config/cache.php
cache.php
config/logging.php
logging.php
config/cors.php
cors.php
config/database.php config/database.php
database.php database.php
config/mail.php
mail.php
config/sanctum.php
sanctum.php
config/queue.php
queue.php
config/filesystems.php
filesystems.php
config/session.php config/session.php
session.php session.php
config/hashing.php config/hashing.php
hashing.php hashing.php
config/queue.php config/cors.php
queue.php cors.php
config/services.php config/view.php
services.php view.php
app/Exceptions/Handler.php config/logging.php
Exceptions/Handler.php logging.php
Handler.php config/broadcasting.php
app/Models/User.php broadcasting.php
Models/User.php composer.json
User.php CHANGELOG.md
app/Console/Kernel.php README.md
Console/Kernel.php
Kernel.php
app/Http/Kernel.php
Http/Kernel.php
Kernel.php
app/Http/Controllers/Controller.php app/Http/Controllers/Controller.php
Http/Controllers/Controller.php Http/Controllers/Controller.php
Controllers/Controller.php Controllers/Controller.php
Controller.php Controller.php
app/Http/Middleware/ValidateSignature.php
Http/Middleware/ValidateSignature.php
Middleware/ValidateSignature.php
ValidateSignature.php
app/Http/Middleware/TrustHosts.php
Http/Middleware/TrustHosts.php
Middleware/TrustHosts.php
TrustHosts.php
app/Http/Middleware/EncryptCookies.php
Http/Middleware/EncryptCookies.php
Middleware/EncryptCookies.php
EncryptCookies.php
app/Http/Middleware/Authenticate.php app/Http/Middleware/Authenticate.php
Http/Middleware/Authenticate.php Http/Middleware/Authenticate.php
Middleware/Authenticate.php Middleware/Authenticate.php
@ -98,34 +83,37 @@ app/Http/Middleware/TrimStrings.php
Http/Middleware/TrimStrings.php Http/Middleware/TrimStrings.php
Middleware/TrimStrings.php Middleware/TrimStrings.php
TrimStrings.php TrimStrings.php
app/Http/Middleware/TrustHosts.php
Http/Middleware/TrustHosts.php
Middleware/TrustHosts.php
TrustHosts.php
app/Http/Middleware/ValidateSignature.php
Http/Middleware/ValidateSignature.php
Middleware/ValidateSignature.php
ValidateSignature.php
app/Http/Middleware/PreventRequestsDuringMaintenance.php
Http/Middleware/PreventRequestsDuringMaintenance.php
Middleware/PreventRequestsDuringMaintenance.php
PreventRequestsDuringMaintenance.php
app/Http/Middleware/RedirectIfAuthenticated.php
Http/Middleware/RedirectIfAuthenticated.php
Middleware/RedirectIfAuthenticated.php
RedirectIfAuthenticated.php
app/Http/Middleware/VerifyCsrfToken.php app/Http/Middleware/VerifyCsrfToken.php
Http/Middleware/VerifyCsrfToken.php Http/Middleware/VerifyCsrfToken.php
Middleware/VerifyCsrfToken.php Middleware/VerifyCsrfToken.php
VerifyCsrfToken.php VerifyCsrfToken.php
app/Http/Middleware/EncryptCookies.php app/Http/Middleware/PreventRequestsDuringMaintenance.php
Http/Middleware/EncryptCookies.php Http/Middleware/PreventRequestsDuringMaintenance.php
Middleware/EncryptCookies.php Middleware/PreventRequestsDuringMaintenance.php
EncryptCookies.php PreventRequestsDuringMaintenance.php
app/Http/Middleware/TrustProxies.php app/Http/Middleware/TrustProxies.php
Http/Middleware/TrustProxies.php Http/Middleware/TrustProxies.php
Middleware/TrustProxies.php Middleware/TrustProxies.php
TrustProxies.php TrustProxies.php
app/Http/Middleware/RedirectIfAuthenticated.php
Http/Middleware/RedirectIfAuthenticated.php
Middleware/RedirectIfAuthenticated.php
RedirectIfAuthenticated.php
app/Http/Kernel.php
Http/Kernel.php
Kernel.php
app/Console/Kernel.php
Console/Kernel.php
Kernel.php
app/Models/User.php
Models/User.php
User.php
app/Exceptions/Handler.php
Exceptions/Handler.php
Handler.php
app/Providers/BroadcastServiceProvider.php
Providers/BroadcastServiceProvider.php
BroadcastServiceProvider.php
app/Providers/RouteServiceProvider.php app/Providers/RouteServiceProvider.php
Providers/RouteServiceProvider.php Providers/RouteServiceProvider.php
RouteServiceProvider.php RouteServiceProvider.php
@ -135,27 +123,39 @@ AuthServiceProvider.php
app/Providers/AppServiceProvider.php app/Providers/AppServiceProvider.php
Providers/AppServiceProvider.php Providers/AppServiceProvider.php
AppServiceProvider.php AppServiceProvider.php
app/Providers/BroadcastServiceProvider.php
Providers/BroadcastServiceProvider.php
BroadcastServiceProvider.php
app/Providers/EventServiceProvider.php app/Providers/EventServiceProvider.php
Providers/EventServiceProvider.php Providers/EventServiceProvider.php
EventServiceProvider.php EventServiceProvider.php
README.md
bootstrap/app.php
app.php
routes/channels.php
channels.php
routes/console.php
console.php
routes/web.php
web.php
routes/api.php
api.php
public/robots.txt public/robots.txt
robots.txt robots.txt
public/index.php public/index.php
index.php index.php
public/.htaccess public/.htaccess
.htaccess .htaccess
phpunit.xml phpunit.xml
resources/js/app.js
js/app.js
app.js
resources/js/bootstrap.js
js/bootstrap.js
bootstrap.js
resources/views/welcome.blade.php
views/welcome.blade.php
welcome.blade.php
.styleci.yml
.gitattributes
package.json
vite.config.js
bootstrap/app.php
app.php
tests/TestCase.php
TestCase.php
tests/Feature/ExampleTest.php
Feature/ExampleTest.php
ExampleTest.php
tests/Unit/ExampleTest.php
Unit/ExampleTest.php
ExampleTest.php
tests/CreatesApplication.php
CreatesApplication.php
.env.example

View File

@ -1,66 +1,66 @@
composer.json
tests/CreatesApplication.php
tests/Unit/ExampleTest.php
tests/Feature/ExampleTest.php
tests/TestCase.php
resources/js/app.js
resources/js/bootstrap.js
resources/views/welcome.blade.php
artisan artisan
package.json routes/console.php
vite.config.js routes/channels.php
CHANGELOG.md routes/web.php
routes/api.php
.editorconfig
database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php
database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php
database/seeders/DatabaseSeeder.php database/seeders/DatabaseSeeder.php
database/factories/UserFactory.php database/factories/UserFactory.php
database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php config/services.php
database/migrations/2019_08_19_000000_create_failed_jobs_table.php config/cache.php
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
database/migrations/2014_10_12_000000_create_users_table.php
.gitattributes
.styleci.yml
.env.example
.editorconfig
config/mail.php
config/filesystems.php
config/auth.php config/auth.php
config/app.php config/app.php
config/view.php
config/broadcasting.php
config/sanctum.php
config/cache.php
config/logging.php
config/cors.php
config/database.php config/database.php
config/mail.php
config/sanctum.php
config/queue.php
config/filesystems.php
config/session.php config/session.php
config/hashing.php config/hashing.php
config/queue.php config/cors.php
config/services.php config/view.php
app/Exceptions/Handler.php config/logging.php
app/Models/User.php config/broadcasting.php
app/Console/Kernel.php composer.json
app/Http/Kernel.php CHANGELOG.md
README.md
app/Http/Controllers/Controller.php app/Http/Controllers/Controller.php
app/Http/Middleware/ValidateSignature.php
app/Http/Middleware/TrustHosts.php
app/Http/Middleware/EncryptCookies.php
app/Http/Middleware/Authenticate.php app/Http/Middleware/Authenticate.php
app/Http/Middleware/TrimStrings.php app/Http/Middleware/TrimStrings.php
app/Http/Middleware/TrustHosts.php
app/Http/Middleware/ValidateSignature.php
app/Http/Middleware/PreventRequestsDuringMaintenance.php
app/Http/Middleware/RedirectIfAuthenticated.php
app/Http/Middleware/VerifyCsrfToken.php app/Http/Middleware/VerifyCsrfToken.php
app/Http/Middleware/EncryptCookies.php app/Http/Middleware/PreventRequestsDuringMaintenance.php
app/Http/Middleware/TrustProxies.php app/Http/Middleware/TrustProxies.php
app/Http/Middleware/RedirectIfAuthenticated.php
app/Http/Kernel.php
app/Console/Kernel.php
app/Models/User.php
app/Exceptions/Handler.php
app/Providers/BroadcastServiceProvider.php
app/Providers/RouteServiceProvider.php app/Providers/RouteServiceProvider.php
app/Providers/AuthServiceProvider.php app/Providers/AuthServiceProvider.php
app/Providers/AppServiceProvider.php app/Providers/AppServiceProvider.php
app/Providers/BroadcastServiceProvider.php
app/Providers/EventServiceProvider.php app/Providers/EventServiceProvider.php
README.md
bootstrap/app.php
routes/channels.php
routes/console.php
routes/web.php
routes/api.php
public/robots.txt public/robots.txt
public/index.php public/index.php
public/.htaccess public/.htaccess
phpunit.xml phpunit.xml
resources/js/app.js
resources/js/bootstrap.js
resources/views/welcome.blade.php
.styleci.yml
.gitattributes
package.json
vite.config.js
bootstrap/app.php
tests/TestCase.php
tests/Feature/ExampleTest.php
tests/Unit/ExampleTest.php
tests/CreatesApplication.php
.env.example

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,51 +1,51 @@
SECURITY.md
.travis.yml
config/config.yml.template
config.yml.template
composer.json composer.json
.phpcs.xml
index.php index.php
lib/AbstractPicoPlugin.php CHANGELOG.md
AbstractPicoPlugin.php README.md
lib/PicoPluginInterface.php .htaccess
PicoPluginInterface.php .build/release.sh
lib/PicoTwigExtension.php release.sh
PicoTwigExtension.php
lib/Pico.php
Pico.php
.phpdoc.xml
plugins/DummyPlugin.php
DummyPlugin.php
.build/init.sh.inc .build/init.sh.inc
init.sh.inc init.sh.inc
.build/clean.sh
clean.sh
.build/install.sh
install.sh
.build/deploy-release.sh .build/deploy-release.sh
deploy-release.sh deploy-release.sh
.build/deploy-branch.sh .build/deploy-branch.sh
deploy-branch.sh deploy-branch.sh
.build/release.sh .build/install.sh
release.sh install.sh
CHANGELOG.md .build/clean.sh
.gitattributes clean.sh
lib/Pico.php
Pico.php
lib/PicoPluginInterface.php
PicoPluginInterface.php
lib/AbstractPicoPlugin.php
AbstractPicoPlugin.php
lib/PicoTwigExtension.php
PicoTwigExtension.php
CONTRIBUTING.md CONTRIBUTING.md
.travis.yml
config/config.yml.template
config.yml.template
index.php.dist
content-sample/_meta.md
_meta.md
content-sample/index.md
index.md
content-sample/sub/page.md content-sample/sub/page.md
sub/page.md sub/page.md
page.md page.md
content-sample/sub/index.md content-sample/sub/index.md
sub/index.md sub/index.md
index.md index.md
content-sample/_meta.md
_meta.md
content-sample/theme.md content-sample/theme.md
theme.md theme.md
content-sample/index.md
index.md
content-sample/404.md content-sample/404.md
404.md 404.md
README.md
SECURITY.md
LICENSE.md LICENSE.md
.htaccess .gitattributes
.phpcs.xml
plugins/DummyPlugin.php
DummyPlugin.php
.phpdoc.xml
index.php.dist

View File

@ -1,31 +1,31 @@
composer.json SECURITY.md
.phpcs.xml
index.php
lib/AbstractPicoPlugin.php
lib/PicoPluginInterface.php
lib/PicoTwigExtension.php
lib/Pico.php
.phpdoc.xml
plugins/DummyPlugin.php
.build/init.sh.inc
.build/clean.sh
.build/install.sh
.build/deploy-release.sh
.build/deploy-branch.sh
.build/release.sh
CHANGELOG.md
.gitattributes
CONTRIBUTING.md
.travis.yml .travis.yml
config/config.yml.template config/config.yml.template
index.php.dist composer.json
content-sample/_meta.md index.php
content-sample/index.md CHANGELOG.md
README.md
.htaccess
.build/release.sh
.build/init.sh.inc
.build/deploy-release.sh
.build/deploy-branch.sh
.build/install.sh
.build/clean.sh
lib/Pico.php
lib/PicoPluginInterface.php
lib/AbstractPicoPlugin.php
lib/PicoTwigExtension.php
CONTRIBUTING.md
content-sample/sub/page.md content-sample/sub/page.md
content-sample/sub/index.md content-sample/sub/index.md
content-sample/_meta.md
content-sample/theme.md content-sample/theme.md
content-sample/index.md
content-sample/404.md content-sample/404.md
README.md
SECURITY.md
LICENSE.md LICENSE.md
.htaccess .gitattributes
.phpcs.xml
plugins/DummyPlugin.php
.phpdoc.xml
index.php.dist

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,91 @@
composer.json artisan
tests/TestCase.php routes/console.php
TestCase.php console.php
routes/web.php
web.php
routes/api.php
api.php
.editorconfig
database/migrations/.gitkeep
migrations/.gitkeep
.gitkeep
database/seeds/DatabaseSeeder.php
seeds/DatabaseSeeder.php
DatabaseSeeder.php
database/seeds/.gitkeep
seeds/.gitkeep
.gitkeep
database/factories/ModelFactory.php
factories/ModelFactory.php
ModelFactory.php
build.xml
config/services.php
services.php
config/httpcache.php
httpcache.php
config/scout.php
scout.php
config/cache.php
cache.php
config/auth.php
auth.php
config/app.php
app.php
config/database.php
database.php
config/mail.php
mail.php
config/queue.php
queue.php
config/debugbar.php
debugbar.php
config/filesystems.php
filesystems.php
config/image.php
image.php
config/session.php
session.php
config/view.php
view.php
config/logging.php
logging.php
config/streams.php
streams.php
config/compile.php
compile.php
config/broadcasting.php
broadcasting.php
Procfile Procfile
composer.json
README.md
app/README.md
README.md
app/Providers/BroadcastServiceProvider.php
Providers/BroadcastServiceProvider.php
BroadcastServiceProvider.php
app/Providers/RouteServiceProvider.php
Providers/RouteServiceProvider.php
RouteServiceProvider.php
app/Providers/AuthServiceProvider.php
Providers/AuthServiceProvider.php
AuthServiceProvider.php
app/Providers/AppServiceProvider.php
Providers/AppServiceProvider.php
AppServiceProvider.php
app/Providers/EventServiceProvider.php
Providers/EventServiceProvider.php
EventServiceProvider.php
server.php
addons/.gitkeep
.gitkeep
public/index.php
index.php
public/.htaccess
.htaccess
phpunit.xml
CONTRIBUTING.md
webpack.mix.js
LICENSE.md
resources/assets/sass/variables.scss resources/assets/sass/variables.scss
assets/sass/variables.scss assets/sass/variables.scss
sass/variables.scss sass/variables.scss
@ -23,22 +107,17 @@ resources/assets/js/bootstrap.js
assets/js/bootstrap.js assets/js/bootstrap.js
js/bootstrap.js js/bootstrap.js
bootstrap.js bootstrap.js
resources/streams/config/navigation.php resources/views/welcome.blade.php
streams/config/navigation.php views/welcome.blade.php
config/navigation.php welcome.blade.php
navigation.php resources/views/vendor/.gitkeep
resources/streams/config/addons.php views/vendor/.gitkeep
streams/config/addons.php vendor/.gitkeep
config/addons.php .gitkeep
addons.php resources/views/errors/503.blade.php
resources/streams/config/distribution.php views/errors/503.blade.php
streams/config/distribution.php errors/503.blade.php
config/distribution.php 503.blade.php
distribution.php
resources/streams/config/themes.php
streams/config/themes.php
config/themes.php
themes.php
resources/lang/fa/auth.php resources/lang/fa/auth.php
lang/fa/auth.php lang/fa/auth.php
fa/auth.php fa/auth.php
@ -55,38 +134,6 @@ resources/lang/fa/pagination.php
lang/fa/pagination.php lang/fa/pagination.php
fa/pagination.php fa/pagination.php
pagination.php pagination.php
resources/lang/en/auth.php
lang/en/auth.php
en/auth.php
auth.php
resources/lang/en/passwords.php
lang/en/passwords.php
en/passwords.php
passwords.php
resources/lang/en/validation.php
lang/en/validation.php
en/validation.php
validation.php
resources/lang/en/pagination.php
lang/en/pagination.php
en/pagination.php
pagination.php
resources/lang/ar/auth.php
lang/ar/auth.php
ar/auth.php
auth.php
resources/lang/ar/passwords.php
lang/ar/passwords.php
ar/passwords.php
passwords.php
resources/lang/ar/validation.php
lang/ar/validation.php
ar/validation.php
validation.php
resources/lang/ar/pagination.php
lang/ar/pagination.php
ar/pagination.php
pagination.php
resources/lang/tr/auth.php resources/lang/tr/auth.php
lang/tr/auth.php lang/tr/auth.php
tr/auth.php tr/auth.php
@ -103,100 +150,176 @@ resources/lang/tr/pagination.php
lang/tr/pagination.php lang/tr/pagination.php
tr/pagination.php tr/pagination.php
pagination.php pagination.php
resources/views/welcome.blade.php resources/lang/ar/auth.php
views/welcome.blade.php lang/ar/auth.php
welcome.blade.php ar/auth.php
resources/views/errors/503.blade.php
views/errors/503.blade.php
errors/503.blade.php
503.blade.php
resources/views/vendor/.gitkeep
views/vendor/.gitkeep
vendor/.gitkeep
.gitkeep
artisan
package.json
server.php
build.xml
app.json
database/factories/ModelFactory.php
factories/ModelFactory.php
ModelFactory.php
database/seeds/DatabaseSeeder.php
seeds/DatabaseSeeder.php
DatabaseSeeder.php
database/seeds/.gitkeep
seeds/.gitkeep
.gitkeep
database/migrations/.gitkeep
migrations/.gitkeep
.gitkeep
.gitattributes
CONTRIBUTING.md
composer.lock
.editorconfig
config/mail.php
mail.php
config/filesystems.php
filesystems.php
config/auth.php
auth.php auth.php
config/httpcache.php resources/lang/ar/passwords.php
httpcache.php lang/ar/passwords.php
config/image.php ar/passwords.php
image.php passwords.php
config/debugbar.php resources/lang/ar/validation.php
debugbar.php lang/ar/validation.php
config/app.php ar/validation.php
app.php validation.php
config/compile.php resources/lang/ar/pagination.php
compile.php lang/ar/pagination.php
config/view.php ar/pagination.php
view.php pagination.php
config/broadcasting.php resources/lang/en/auth.php
broadcasting.php lang/en/auth.php
config/cache.php en/auth.php
cache.php auth.php
config/scout.php resources/lang/en/passwords.php
scout.php lang/en/passwords.php
config/logging.php en/passwords.php
logging.php passwords.php
config/database.php resources/lang/en/validation.php
database.php lang/en/validation.php
config/session.php en/validation.php
session.php validation.php
config/queue.php resources/lang/en/pagination.php
queue.php lang/en/pagination.php
config/services.php en/pagination.php
services.php pagination.php
config/streams.php resources/streams/config/themes.php
streams.php streams/config/themes.php
Envoy.blade.php config/themes.php
app/README.md themes.php
README.md resources/streams/config/addons.php
app/Providers/RouteServiceProvider.php streams/config/addons.php
Providers/RouteServiceProvider.php config/addons.php
RouteServiceProvider.php addons.php
app/Providers/AuthServiceProvider.php resources/streams/config/navigation.php
Providers/AuthServiceProvider.php streams/config/navigation.php
AuthServiceProvider.php config/navigation.php
app/Providers/AppServiceProvider.php navigation.php
Providers/AppServiceProvider.php resources/streams/config/distribution.php
AppServiceProvider.php streams/config/distribution.php
app/Providers/BroadcastServiceProvider.php config/distribution.php
Providers/BroadcastServiceProvider.php distribution.php
BroadcastServiceProvider.php composer.lock
app/Providers/EventServiceProvider.php .gitattributes
Providers/EventServiceProvider.php package.json
EventServiceProvider.php app.json
README.md docs/en/02.prologue.md
bootstrap/app.php en/02.prologue.md
app.php 02.prologue.md
bootstrap/autoload.php docs/en/04.the-basics/08.posts.md
autoload.php en/04.the-basics/08.posts.md
nginx_app.conf 04.the-basics/08.posts.md
addons/.gitkeep 08.posts.md
.gitkeep docs/en/04.the-basics/12.variables.md
en/04.the-basics/12.variables.md
04.the-basics/12.variables.md
12.variables.md
docs/en/04.the-basics/13.settings.md
en/04.the-basics/13.settings.md
04.the-basics/13.settings.md
13.settings.md
docs/en/04.the-basics/11.users.md
en/04.the-basics/11.users.md
04.the-basics/11.users.md
11.users.md
docs/en/04.the-basics/07.pages.md
en/04.the-basics/07.pages.md
04.the-basics/07.pages.md
07.pages.md
docs/en/04.the-basics/10.files.md
en/04.the-basics/10.files.md
04.the-basics/10.files.md
10.files.md
docs/en/04.the-basics/09.blocks.md
en/04.the-basics/09.blocks.md
04.the-basics/09.blocks.md
09.blocks.md
docs/en/04.the-basics/14.preferences.md
en/04.the-basics/14.preferences.md
04.the-basics/14.preferences.md
14.preferences.md
docs/en/04.the-basics/15.redirects.md
en/04.the-basics/15.redirects.md
04.the-basics/15.redirects.md
15.redirects.md
docs/en/04.the-basics/05.addons.md
en/04.the-basics/05.addons.md
04.the-basics/05.addons.md
05.addons.md
docs/en/04.the-basics/03.control-panel.md
en/04.the-basics/03.control-panel.md
04.the-basics/03.control-panel.md
03.control-panel.md
docs/en/04.the-basics/01.index.md
en/04.the-basics/01.index.md
04.the-basics/01.index.md
01.index.md
docs/en/04.the-basics/06.templating.md
en/04.the-basics/06.templating.md
04.the-basics/06.templating.md
06.templating.md
docs/en/04.the-basics/16.localization.md
en/04.the-basics/16.localization.md
04.the-basics/16.localization.md
16.localization.md
docs/en/01.prologue/03.change-log.md
en/01.prologue/03.change-log.md
01.prologue/03.change-log.md
03.change-log.md
docs/en/01.prologue/04.upgrade-guide.md
en/01.prologue/04.upgrade-guide.md
01.prologue/04.upgrade-guide.md
04.upgrade-guide.md
docs/en/01.prologue/05.contribution-guide.md
en/01.prologue/05.contribution-guide.md
01.prologue/05.contribution-guide.md
05.contribution-guide.md
docs/en/01.prologue/02.release-notes.md
en/01.prologue/02.release-notes.md
01.prologue/02.release-notes.md
02.release-notes.md
docs/en/01.prologue/06.addon-marketplace.md
en/01.prologue/06.addon-marketplace.md
01.prologue/06.addon-marketplace.md
06.addon-marketplace.md
docs/en/01.prologue/01.index.md
en/01.prologue/01.index.md
01.prologue/01.index.md
01.index.md
docs/en/02.getting-started/09.optimizing.md
en/02.getting-started/09.optimizing.md
02.getting-started/09.optimizing.md
09.optimizing.md
docs/en/02.getting-started/03.configuration.md
en/02.getting-started/03.configuration.md
02.getting-started/03.configuration.md
03.configuration.md
docs/en/02.getting-started/08.deployment.md
en/02.getting-started/08.deployment.md
02.getting-started/08.deployment.md
08.deployment.md
docs/en/02.getting-started/02.installation.md
en/02.getting-started/02.installation.md
02.getting-started/02.installation.md
02.installation.md
docs/en/02.getting-started/05.managing-addons.md
en/02.getting-started/05.managing-addons.md
02.getting-started/05.managing-addons.md
05.managing-addons.md
docs/en/02.getting-started/10.error-logging.md
en/02.getting-started/10.error-logging.md
02.getting-started/10.error-logging.md
10.error-logging.md
docs/en/02.getting-started/01.index.md
en/02.getting-started/01.index.md
02.getting-started/01.index.md
01.index.md
docs/en/02.getting-started/04.directory-structure.md
en/02.getting-started/04.directory-structure.md
02.getting-started/04.directory-structure.md
04.directory-structure.md
docs/en/01.index.md
en/01.index.md
01.index.md
docs/en/03.core-concepts/02.architecture.md docs/en/03.core-concepts/02.architecture.md
en/03.core-concepts/02.architecture.md en/03.core-concepts/02.architecture.md
03.core-concepts/02.architecture.md 03.core-concepts/02.architecture.md
@ -209,134 +332,11 @@ docs/en/03.core-concepts/01.index.md
en/03.core-concepts/01.index.md en/03.core-concepts/01.index.md
03.core-concepts/01.index.md 03.core-concepts/01.index.md
01.index.md 01.index.md
docs/en/01.prologue/02.release-notes.md bootstrap/app.php
en/01.prologue/02.release-notes.md app.php
01.prologue/02.release-notes.md bootstrap/autoload.php
02.release-notes.md autoload.php
docs/en/01.prologue/03.change-log.md tests/TestCase.php
en/01.prologue/03.change-log.md TestCase.php
01.prologue/03.change-log.md Envoy.blade.php
03.change-log.md nginx_app.conf
docs/en/01.prologue/05.contribution-guide.md
en/01.prologue/05.contribution-guide.md
01.prologue/05.contribution-guide.md
05.contribution-guide.md
docs/en/01.prologue/01.index.md
en/01.prologue/01.index.md
01.prologue/01.index.md
01.index.md
docs/en/01.prologue/04.upgrade-guide.md
en/01.prologue/04.upgrade-guide.md
01.prologue/04.upgrade-guide.md
04.upgrade-guide.md
docs/en/01.prologue/06.addon-marketplace.md
en/01.prologue/06.addon-marketplace.md
01.prologue/06.addon-marketplace.md
06.addon-marketplace.md
docs/en/02.getting-started/05.managing-addons.md
en/02.getting-started/05.managing-addons.md
02.getting-started/05.managing-addons.md
05.managing-addons.md
docs/en/02.getting-started/02.installation.md
en/02.getting-started/02.installation.md
02.getting-started/02.installation.md
02.installation.md
docs/en/02.getting-started/08.deployment.md
en/02.getting-started/08.deployment.md
02.getting-started/08.deployment.md
08.deployment.md
docs/en/02.getting-started/09.optimizing.md
en/02.getting-started/09.optimizing.md
02.getting-started/09.optimizing.md
09.optimizing.md
docs/en/02.getting-started/04.directory-structure.md
en/02.getting-started/04.directory-structure.md
02.getting-started/04.directory-structure.md
04.directory-structure.md
docs/en/02.getting-started/03.configuration.md
en/02.getting-started/03.configuration.md
02.getting-started/03.configuration.md
03.configuration.md
docs/en/02.getting-started/01.index.md
en/02.getting-started/01.index.md
02.getting-started/01.index.md
01.index.md
docs/en/02.getting-started/10.error-logging.md
en/02.getting-started/10.error-logging.md
02.getting-started/10.error-logging.md
10.error-logging.md
docs/en/04.the-basics/16.localization.md
en/04.the-basics/16.localization.md
04.the-basics/16.localization.md
16.localization.md
docs/en/04.the-basics/14.preferences.md
en/04.the-basics/14.preferences.md
04.the-basics/14.preferences.md
14.preferences.md
docs/en/04.the-basics/12.variables.md
en/04.the-basics/12.variables.md
04.the-basics/12.variables.md
12.variables.md
docs/en/04.the-basics/06.templating.md
en/04.the-basics/06.templating.md
04.the-basics/06.templating.md
06.templating.md
docs/en/04.the-basics/07.pages.md
en/04.the-basics/07.pages.md
04.the-basics/07.pages.md
07.pages.md
docs/en/04.the-basics/03.control-panel.md
en/04.the-basics/03.control-panel.md
04.the-basics/03.control-panel.md
03.control-panel.md
docs/en/04.the-basics/10.files.md
en/04.the-basics/10.files.md
04.the-basics/10.files.md
10.files.md
docs/en/04.the-basics/11.users.md
en/04.the-basics/11.users.md
04.the-basics/11.users.md
11.users.md
docs/en/04.the-basics/01.index.md
en/04.the-basics/01.index.md
04.the-basics/01.index.md
01.index.md
docs/en/04.the-basics/09.blocks.md
en/04.the-basics/09.blocks.md
04.the-basics/09.blocks.md
09.blocks.md
docs/en/04.the-basics/13.settings.md
en/04.the-basics/13.settings.md
04.the-basics/13.settings.md
13.settings.md
docs/en/04.the-basics/15.redirects.md
en/04.the-basics/15.redirects.md
04.the-basics/15.redirects.md
15.redirects.md
docs/en/04.the-basics/05.addons.md
en/04.the-basics/05.addons.md
04.the-basics/05.addons.md
05.addons.md
docs/en/04.the-basics/08.posts.md
en/04.the-basics/08.posts.md
04.the-basics/08.posts.md
08.posts.md
docs/en/01.index.md
en/01.index.md
01.index.md
docs/en/02.prologue.md
en/02.prologue.md
02.prologue.md
routes/console.php
console.php
routes/web.php
web.php
routes/api.php
api.php
webpack.mix.js
LICENSE.md
public/index.php
index.php
public/.htaccess
.htaccess
phpunit.xml

View File

@ -1,115 +1,115 @@
composer.json artisan
tests/TestCase.php routes/console.php
routes/web.php
routes/api.php
.editorconfig
database/migrations/.gitkeep
database/seeds/DatabaseSeeder.php
database/seeds/.gitkeep
database/factories/ModelFactory.php
build.xml
config/services.php
config/httpcache.php
config/scout.php
config/cache.php
config/auth.php
config/app.php
config/database.php
config/mail.php
config/queue.php
config/debugbar.php
config/filesystems.php
config/image.php
config/session.php
config/view.php
config/logging.php
config/streams.php
config/compile.php
config/broadcasting.php
Procfile Procfile
composer.json
README.md
app/README.md
app/Providers/BroadcastServiceProvider.php
app/Providers/RouteServiceProvider.php
app/Providers/AuthServiceProvider.php
app/Providers/AppServiceProvider.php
app/Providers/EventServiceProvider.php
server.php
addons/.gitkeep
public/index.php
public/.htaccess
phpunit.xml
CONTRIBUTING.md
webpack.mix.js
LICENSE.md
resources/assets/sass/variables.scss resources/assets/sass/variables.scss
resources/assets/sass/app.scss resources/assets/sass/app.scss
resources/assets/js/app.js resources/assets/js/app.js
resources/assets/js/components/Example.vue resources/assets/js/components/Example.vue
resources/assets/js/bootstrap.js resources/assets/js/bootstrap.js
resources/streams/config/navigation.php resources/views/welcome.blade.php
resources/streams/config/addons.php resources/views/vendor/.gitkeep
resources/streams/config/distribution.php resources/views/errors/503.blade.php
resources/streams/config/themes.php
resources/lang/fa/auth.php resources/lang/fa/auth.php
resources/lang/fa/passwords.php resources/lang/fa/passwords.php
resources/lang/fa/validation.php resources/lang/fa/validation.php
resources/lang/fa/pagination.php resources/lang/fa/pagination.php
resources/lang/en/auth.php
resources/lang/en/passwords.php
resources/lang/en/validation.php
resources/lang/en/pagination.php
resources/lang/ar/auth.php
resources/lang/ar/passwords.php
resources/lang/ar/validation.php
resources/lang/ar/pagination.php
resources/lang/tr/auth.php resources/lang/tr/auth.php
resources/lang/tr/passwords.php resources/lang/tr/passwords.php
resources/lang/tr/validation.php resources/lang/tr/validation.php
resources/lang/tr/pagination.php resources/lang/tr/pagination.php
resources/views/welcome.blade.php resources/lang/ar/auth.php
resources/views/errors/503.blade.php resources/lang/ar/passwords.php
resources/views/vendor/.gitkeep resources/lang/ar/validation.php
artisan resources/lang/ar/pagination.php
package.json resources/lang/en/auth.php
server.php resources/lang/en/passwords.php
build.xml resources/lang/en/validation.php
app.json resources/lang/en/pagination.php
database/factories/ModelFactory.php resources/streams/config/themes.php
database/seeds/DatabaseSeeder.php resources/streams/config/addons.php
database/seeds/.gitkeep resources/streams/config/navigation.php
database/migrations/.gitkeep resources/streams/config/distribution.php
.gitattributes
CONTRIBUTING.md
composer.lock composer.lock
.editorconfig .gitattributes
config/mail.php package.json
config/filesystems.php app.json
config/auth.php docs/en/02.prologue.md
config/httpcache.php docs/en/04.the-basics/08.posts.md
config/image.php docs/en/04.the-basics/12.variables.md
config/debugbar.php docs/en/04.the-basics/13.settings.md
config/app.php docs/en/04.the-basics/11.users.md
config/compile.php docs/en/04.the-basics/07.pages.md
config/view.php docs/en/04.the-basics/10.files.md
config/broadcasting.php docs/en/04.the-basics/09.blocks.md
config/cache.php docs/en/04.the-basics/14.preferences.md
config/scout.php docs/en/04.the-basics/15.redirects.md
config/logging.php docs/en/04.the-basics/05.addons.md
config/database.php docs/en/04.the-basics/03.control-panel.md
config/session.php docs/en/04.the-basics/01.index.md
config/queue.php docs/en/04.the-basics/06.templating.md
config/services.php docs/en/04.the-basics/16.localization.md
config/streams.php docs/en/01.prologue/03.change-log.md
Envoy.blade.php docs/en/01.prologue/04.upgrade-guide.md
app/README.md docs/en/01.prologue/05.contribution-guide.md
app/Providers/RouteServiceProvider.php docs/en/01.prologue/02.release-notes.md
app/Providers/AuthServiceProvider.php docs/en/01.prologue/06.addon-marketplace.md
app/Providers/AppServiceProvider.php docs/en/01.prologue/01.index.md
app/Providers/BroadcastServiceProvider.php docs/en/02.getting-started/09.optimizing.md
app/Providers/EventServiceProvider.php docs/en/02.getting-started/03.configuration.md
README.md docs/en/02.getting-started/08.deployment.md
bootstrap/app.php docs/en/02.getting-started/02.installation.md
bootstrap/autoload.php docs/en/02.getting-started/05.managing-addons.md
nginx_app.conf docs/en/02.getting-started/10.error-logging.md
addons/.gitkeep docs/en/02.getting-started/01.index.md
docs/en/02.getting-started/04.directory-structure.md
docs/en/01.index.md
docs/en/03.core-concepts/02.architecture.md docs/en/03.core-concepts/02.architecture.md
docs/en/03.core-concepts/03.streams-and-entries.md docs/en/03.core-concepts/03.streams-and-entries.md
docs/en/03.core-concepts/01.index.md docs/en/03.core-concepts/01.index.md
docs/en/01.prologue/02.release-notes.md bootstrap/app.php
docs/en/01.prologue/03.change-log.md bootstrap/autoload.php
docs/en/01.prologue/05.contribution-guide.md tests/TestCase.php
docs/en/01.prologue/01.index.md Envoy.blade.php
docs/en/01.prologue/04.upgrade-guide.md nginx_app.conf
docs/en/01.prologue/06.addon-marketplace.md
docs/en/02.getting-started/05.managing-addons.md
docs/en/02.getting-started/02.installation.md
docs/en/02.getting-started/08.deployment.md
docs/en/02.getting-started/09.optimizing.md
docs/en/02.getting-started/04.directory-structure.md
docs/en/02.getting-started/03.configuration.md
docs/en/02.getting-started/01.index.md
docs/en/02.getting-started/10.error-logging.md
docs/en/04.the-basics/16.localization.md
docs/en/04.the-basics/14.preferences.md
docs/en/04.the-basics/12.variables.md
docs/en/04.the-basics/06.templating.md
docs/en/04.the-basics/07.pages.md
docs/en/04.the-basics/03.control-panel.md
docs/en/04.the-basics/10.files.md
docs/en/04.the-basics/11.users.md
docs/en/04.the-basics/01.index.md
docs/en/04.the-basics/09.blocks.md
docs/en/04.the-basics/13.settings.md
docs/en/04.the-basics/15.redirects.md
docs/en/04.the-basics/05.addons.md
docs/en/04.the-basics/08.posts.md
docs/en/01.index.md
docs/en/02.prologue.md
routes/console.php
routes/web.php
routes/api.php
webpack.mix.js
LICENSE.md
public/index.php
public/.htaccess
phpunit.xml

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -200,6 +200,7 @@ $rpc/google.internal.maps.mapsjs.v1.MapsJsInternalService
?*ListingID= ?*ListingID=
?*ProfileID= ?*ProfileID=
?*campaignId= ?*campaignId=
?*dcr=apps
?*feed= ?*feed=
?*login= ?*login=
?*mcubz= ?*mcubz=
@ -354,6 +355,7 @@ _/mss/boq-discover-labs
_/mss/boq-geo _/mss/boq-geo
_/mss/boq-identity _/mss/boq-identity
_/mss/boq-nbu-monetization _/mss/boq-nbu-monetization
_/mss/boq-search
_/mss/boq-search-engagement-post _/mss/boq-search-engagement-post
_/mss/boq-travel _/mss/boq-travel
_/pantheon _/pantheon
@ -765,7 +767,9 @@ biz_link
biz_photos biz_photos
biz_photos/*/log biz_photos/*/log
biz_photos/*/log_views biz_photos/*/log_views
biz_photos/*?select_video=
biz_photos/feedback biz_photos/feedback
biz_photos/video_url
biz_redir biz_redir
biz_share biz_share
biz_update biz_update
@ -1156,6 +1160,7 @@ de*/people/*/circle
de*/people/*/favorites de*/people/*/favorites
de*/shop/*/favoriters de*/shop/*/favoriters
de*/shop/*/sold de*/shop/*/sold
de-de.www.cloudflare.com
de-de/corporate/rechtliche-hinweise/impressum_de.aspx de-de/corporate/rechtliche-hinweise/impressum_de.aspx
de-de/feedback de-de/feedback
de-de/lp de-de/lp
@ -1408,6 +1413,7 @@ edurec
ehf ehf
ekansa/Open-Context-Data ekansa/Open-Context-Data
ekansa/opencontext- ekansa/opencontext-
el-gr.www.cloudflare.com
elite? elite?
email email
email-unsubscribe email-unsubscribe
@ -1444,17 +1450,28 @@ employment_social/anticipedia/xwiki/bin/upload
employment_social/anticipedia/xwiki/bin/viewattachrev employment_social/anticipedia/xwiki/bin/viewattachrev
employment_social/anticipedia/xwiki/bin/viewrev employment_social/anticipedia/xwiki/bin/viewrev
employment_social/anticipedia/xwiki/bin/xmlrpc employment_social/anticipedia/xwiki/bin/xmlrpc
en-au.www.cloudflare.com
en-au/feedback en-au/feedback
en-au/lp en-au/lp
en-ca.www.cloudflare.com
en-ca/feedback en-ca/feedback
en-ca/lp en-ca/lp
en-gb.www.cloudflare.com
en-gb/feedback en-gb/feedback
en-gb/lp en-gb/lp
en-in.www.cloudflare.com
en-in/feedback en-in/feedback
en-in/lp en-in/lp
en-us.www.cloudflare.com
en-us/windows/si/matrix.html en-us/windows/si/matrix.html
en/microsoft-365 en/microsoft-365
en/microsoft-365/ en/microsoft-365/
en/microsoft-teams
en/microsoft-teams/
en/microsoft-viva
en/microsoft-viva/
en/security
en/security/
endorsements endorsements
engagement engagement
enterprise-jobs enterprise-jobs
@ -1467,6 +1484,7 @@ es*/people/*/circle
es*/people/*/favorites es*/people/*/favorites
es*/shop/*/favoriters es*/shop/*/favoriters
es*/shop/*/sold es*/shop/*/sold
es-es.www.cloudflare.com
es-es/feedback es-es/feedback
es-es/lp es-es/lp
es-la/feedback es-la/feedback
@ -1506,11 +1524,17 @@ es/market/rebel_flag
es/messages es/messages
es/microsoft-365 es/microsoft-365
es/microsoft-365/ es/microsoft-365/
es/microsoft-teams
es/microsoft-teams/
es/microsoft-viva
es/microsoft-viva/
es/mini.php es/mini.php
es/search*attr_*= es/search*attr_*=
es/search*price_bucket= es/search*price_bucket=
es/search*search_type= es/search*search_type=
es/search*ship_to= es/search*ship_to=
es/security
es/security/
es/share es/share
es/shop_name_search_service es/shop_name_search_service
es/teams es/teams
@ -1521,10 +1545,12 @@ eures/main.jsp
europeaid/companion europeaid/companion
europeaid/prag europeaid/prag
eurostat/*/search/- eurostat/*/search/-
eurostat/*?*p_p_id=NavTreeportletprod_WAR_NavTreeportletprod_INSTANCE_
eurostat/*?*p_p_id=esssearchportlet_WAR_esssearchportlet eurostat/*?*p_p_id=esssearchportlet_WAR_esssearchportlet
eurostat/*?*p_p_id=estatsearchportlet_WAR_estatsearchportlet eurostat/*?*p_p_id=estatsearchportlet_WAR_estatsearchportlet
eurostat/*com_liferay_login_web_portlet_LoginPortlet
eurostat/*doAsUserId
eurostat/SDMX/diss-web/rest eurostat/SDMX/diss-web/rest
eurostat/group/*control_panel
eurostat/home/-/search/data-browser eurostat/home/-/search/data-browser
eurostat/search eurostat/search
eurostat/tgm eurostat/tgm
@ -1562,7 +1588,6 @@ facebook_connect
faves-i_love_u_get_away_from_me faves-i_love_u_get_away_from_me
favorite favorite
fb.html fb.html
fbx
fe=true fe=true
feature/sf-test feature/sf-test
feed feed
@ -1659,6 +1684,7 @@ fr*/people/*/circle
fr*/people/*/favorites fr*/people/*/favorites
fr*/shop/*/favoriters fr*/shop/*/favoriters
fr*/shop/*/sold fr*/shop/*/sold
fr-fr.www.cloudflare.com
fr-fr/feedback fr-fr/feedback
fr-fr/lp fr-fr/lp
fr/*?order= fr/*?order=
@ -1696,11 +1722,17 @@ fr/market/rebel_flag
fr/messages fr/messages
fr/microsoft-365 fr/microsoft-365
fr/microsoft-365/ fr/microsoft-365/
fr/microsoft-teams
fr/microsoft-teams/
fr/microsoft-viva
fr/microsoft-viva/
fr/mini.php fr/mini.php
fr/search*attr_*= fr/search*attr_*=
fr/search*price_bucket= fr/search*price_bucket=
fr/search*search_type= fr/search*search_type=
fr/search*ship_to= fr/search*ship_to=
fr/security
fr/security/
fr/share fr/share
fr/shop_name_search_service fr/shop_name_search_service
fr/teams fr/teams
@ -1876,6 +1908,7 @@ help/maps/streetview/partners/welcome
help/sitemap help/sitemap
help/sitemap.php help/sitemap.php
help/sl help/sl
help/sso
help/testing help/testing
help/verify_email help/verify_email
help/vodafone help/vodafone
@ -1954,6 +1987,7 @@ i/api
i/u i/u
ia ia
icons icons
id-id.www.cloudflare.com
idea-ads-tool idea-ads-tool
idea-pin-builder idea-pin-builder
idea-pin-invite idea-pin-invite
@ -2156,6 +2190,7 @@ it*/people/*/circle
it*/people/*/favorites it*/people/*/favorites
it*/shop/*/favoriters it*/shop/*/favoriters
it*/shop/*/sold it*/shop/*/sold
it-it.www.cloudflare.com
it-it/feedback it-it/feedback
it-it/lp it-it/lp
it/*?order= it/*?order=
@ -2202,6 +2237,7 @@ it/teams
it/transactions it/transactions
it/treasury it/treasury
it/your it/your
ja-jp.www.cloudflare.com
ja-jp/feedback ja-jp/feedback
ja-jp/lp ja-jp/lp
japan/directx/default.asp? japan/directx/default.asp?
@ -2282,6 +2318,7 @@ json
kb/index?*page=search kb/index?*page=search
keep keep
knowmore knowmore
ko-kr.www.cloudflare.com
ko-kr/feedback ko-kr/feedback
ko-kr/lp ko-kr/lp
kwanzaa-spotlight kwanzaa-spotlight
@ -2368,6 +2405,7 @@ login/?next=
login?*= login?*=
logo-maker/brief logo-maker/brief
logo-maker/choose-variation logo-maker/choose-variation
logo-maker/woo
logo-maker/wordpress logo-maker/wordpress
logout logout
lp lp
@ -2539,6 +2577,7 @@ name/nm*/filmotype
name/nm*/mediaviewer/rm*/tr name/nm*/mediaviewer/rm*/tr
narrative- narrative-
native native
nb-no.www.cloudflare.com
nbubumblebee nbubumblebee
network network
new_invite new_invite
@ -2565,6 +2604,7 @@ nl*/people/*/circle
nl*/people/*/favorites nl*/people/*/favorites
nl*/shop/*/favoriters nl*/shop/*/favoriters
nl*/shop/*/sold nl*/shop/*/sold
nl-nl.www.cloudflare.com
nl/*?order= nl/*?order=
nl/*color= nl/*color=
nl/*customizable= nl/*customizable=
@ -2822,6 +2862,7 @@ pl*/people/*/circle
pl*/people/*/favorites pl*/people/*/favorites
pl*/shop/*/favoriters pl*/shop/*/favoriters
pl*/shop/*/sold pl*/shop/*/sold
pl-pl.www.cloudflare.com
pl/*?order= pl/*?order=
pl/*color= pl/*color=
pl/*customizable= pl/*customizable=
@ -2934,6 +2975,7 @@ pt*/people/*/circle
pt*/people/*/favorites pt*/people/*/favorites
pt*/shop/*/favoriters pt*/shop/*/favoriters
pt*/shop/*/sold pt*/shop/*/sold
pt-br.www.cloudflare.com
pt-br/feedback pt-br/feedback
pt-br/lp pt-br/lp
pt/*?order= pt/*?order=
@ -3078,6 +3120,7 @@ reviews/top-reviewers
row row
rss rss
rss/people/*/reviews rss/people/*/reviews
ru-ru.www.cloudflare.com
ru-ru/events/platforma/materials/default.aspx?speaker* ru-ru/events/platforma/materials/default.aspx?speaker*
rus/licensing/Unilateral.aspx/* rus/licensing/Unilateral.aspx/*
rw/WashingtonPost/Content/Epaper rw/WashingtonPost/Content/Epaper
@ -3101,6 +3144,7 @@ safebrowsing/report_phish
salary-explorer/api salary-explorer/api
scholar scholar
scholar_share scholar_share
scl
scripts scripts
sdch sdch
sdk/js sdk/js
@ -3248,6 +3292,7 @@ sg-en/teams
sg-en/transactions sg-en/transactions
sg-en/treasury sg-en/treasury
sg-en/your sg-en/your
sh
share share
shareArticle shareArticle
sharing sharing
@ -3285,7 +3330,7 @@ signin?expId=confirmEmail
signup signup
signup$ signup$
signup. signup.
signup.SignUp.html signup.SignUp.html$
since= since=
sit_rep sit_rep
sitemaps sitemaps
@ -3576,6 +3621,7 @@ spain/medianaempresa/
specials specials
spice spice
sport/404_en.htm sport/404_en.htm
sport/alpha
sport/olympics/2008/events sport/olympics/2008/events
sport/olympics/2008/medals sport/olympics/2008/medals
sport/videos sport/videos
@ -3669,6 +3715,7 @@ support/content
support/forum/search? support/forum/search?
surprise surprise
suspension-appeal suspension-appeal
sv-se.www.cloudflare.com
svc svc
svc/crosswords svc/crosswords
svc/games svc/games
@ -3720,6 +3767,7 @@ templates
test test
testpage-forhomepage testpage-forhomepage
tetro tetro
th-th.www.cloudflare.com
thanksgiving-spotlight thanksgiving-spotlight
thanx? thanx?
themacallan/worlds-together themacallan/worlds-together
@ -3747,6 +3795,7 @@ touringbird
toyota/coming-soon toyota/coming-soon
toyota/fueled-by-skepticism toyota/fueled-by-skepticism
tr tr
tr-tr.www.cloudflare.com
transaction_platform/start_order transaction_platform/start_order
transactions transactions
transconsole/portal transconsole/portal
@ -3943,6 +3992,7 @@ v1/urls/count.json
v3/pidgets/log v3/pidgets/log
v4 v4
verify_age verify_age
vi-vn.www.cloudflare.com
video/embedded video/embedded
videos/week videos/week
viewer viewer
@ -4445,8 +4495,11 @@ z=album
z=photo z=photo
z=video z=video
zh-cn zh-cn
zh-cn.www.cloudflare.com
zh-cn/feedback zh-cn/feedback
zh-cn/lp zh-cn/lp
zh-hans-cn.www.cloudflare.com
zh-tw.www.cloudflare.com
zh-tw/feedback zh-tw/feedback
zh-tw/lp zh-tw/lp
zh_CN zh_CN