├── .dockerignore ├── .env ├── .github └── workflows │ └── laravel.yml ├── .gitignore ├── Dockerfile.mysql ├── Dockerfile.nginx ├── LICENSE ├── README.md ├── deployment └── config │ ├── mysql │ ├── create_database.sql │ └── mysql.cnf │ ├── nginx.conf │ ├── php-fpm │ ├── php-dev.ini │ ├── php-prod.ini │ └── www.conf │ └── supervisor │ ├── logrotate │ └── supervisord.conf ├── docker-compose.yml └── src ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── Dockerfile ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ ├── Commands │ │ └── UpdateTVShowPopularityScores.php │ └── Kernel.php ├── Data │ ├── Casts │ │ └── TVShowStatusCast.php │ ├── EpisodeData.php │ ├── SearchTVShowData.php │ └── TVShowData.php ├── Events │ ├── LastAiredEpisodeDateUpdated.php │ ├── NextEpisodeDateUpdated.php │ ├── TVShowCreated.php │ └── TVShowUpdated.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── TVShowController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── CrawlMostPopularJob.php │ ├── CrawlNotRecentlyCrawledShowsJob.php │ ├── SendEmailTVShowUpdate.php │ └── UpdateImdbInfoOfTvShows.php ├── Livewire │ ├── Modals │ │ ├── FullInfoModal.php │ │ └── RegistrationRequired.php │ ├── SubscribeButton.php │ ├── TVShowBox.php │ ├── TVShowFullInfo.php │ ├── TVShowGroup.php │ ├── TVShowSearch.php │ ├── TVShowSearchFull.php │ └── TVShowTimeline.php ├── Mail │ └── TVShowsUpdatesNotif.php ├── Models │ ├── EmailSubscription.php │ ├── TVShow.php │ ├── TVShowImdbInfo.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── HorizonServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php ├── TVShow │ ├── Crawling │ │ ├── CrawlMostPopular.php │ │ ├── CrawlNotRecentlyCrawledShows.php │ │ ├── MainCrawler.php │ │ └── SeriesCrawler.php │ ├── CreateOrUpdateStatus.php │ ├── CreateOrUpdateTVShow.php │ ├── EmailSubscriptions │ │ └── EmailSubscriptionManager.php │ ├── RemoteData │ │ ├── GetRemoteMostPopularTVShow.php │ │ ├── GetRemoteTVShowInfo.php │ │ ├── RemoteRequest.php │ │ └── SearchRemoteTVShow.php │ ├── SearchTVShow.php │ ├── TVShowImdbFinder.php │ ├── TVShowStatus.php │ ├── Timeline │ │ ├── Timeline.php │ │ ├── TimelineFormatter.php │ │ ├── TimelineSection.php │ │ └── Types │ │ │ ├── FutureTimeline.php │ │ │ ├── HasDuration.php │ │ │ ├── HasEpisodeField.php │ │ │ ├── PastTimeline.php │ │ │ ├── Timeline.php │ │ │ ├── TimelineInfo.php │ │ │ ├── TimelineType.php │ │ │ └── TodayTimeline.php │ └── UpdateTVShowsImdbInfo.php ├── Tools │ └── helpers.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── data.php ├── database.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── horizon.php ├── insights.php ├── jetstream.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── scout.php ├── services.php ├── session.php ├── sweetalert.php ├── tvshow.php └── view.php ├── database ├── .gitignore ├── factories │ ├── EmailSubscriptionFactory.php │ ├── TVShowFactory.php │ ├── TVShowImdbInfoFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_07_03_145651_create_t_v_shows_table.php │ ├── 2023_08_16_114817_create_subscription_table.php │ ├── 2023_08_22_114346_create_sessions_table.php │ ├── 2023_10_15_195856_add_email_subscriptin_field.php │ ├── 2023_10_15_200907_create_email_subscriptions_table.php │ ├── 2024_06_11_122255_create_cache_table.php │ ├── 2024_06_11_123741_create_jobs_table.php │ ├── 2025_08_24_000000_add_imdb_fields_to_tvshows_table.php │ ├── 2025_08_24_000002_create_tv_show_imdb_info_table.php │ └── 2025_09_22_000000_add_popularity_score_to_tv_show_imdb_info_table.php └── seeders │ ├── DatabaseSeeder.php │ ├── TVShowSeeder.php │ └── UserSeeder.php ├── package-lock.json ├── package.json ├── phpstan.neon.dist ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt └── vendor │ ├── horizon │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── img │ │ ├── favicon.png │ │ ├── horizon.svg │ │ └── sprite.svg │ └── mix-manifest.json │ └── sweetalert │ ├── sweetalert.all.js │ └── theme │ ├── theme-bootstrap-4.css │ ├── theme-borderless.css │ ├── theme-bulma.css │ ├── theme-dark.css │ ├── theme-material-ui.css │ └── theme-minimal.css ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── action-message.blade.php │ ├── action-section.blade.php │ ├── application-logo.blade.php │ ├── application-mark.blade.php │ ├── authentication-card-logo.blade.php │ ├── authentication-card.blade.php │ ├── banner.blade.php │ ├── button.blade.php │ ├── checkbox.blade.php │ ├── confirmation-modal.blade.php │ ├── confirms-password.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── form-section.blade.php │ ├── input-error.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── section-border.blade.php │ ├── section-title.blade.php │ ├── switchable-team.blade.php │ ├── validation-errors.blade.php │ └── welcome.blade.php │ ├── dashboard.blade.php │ ├── emails │ ├── team-invitation.blade.php │ └── today_tvshows.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── livewire │ ├── modals │ │ ├── full-info.blade.php │ │ └── registration-required.blade.php │ ├── partials │ │ ├── email-subscription-option.blade.php │ │ ├── imdb-link.blade.php │ │ ├── load-more-timeline-btn.blade.php │ │ ├── loading-indicator.blade.php │ │ └── sorting-box.blade.php │ ├── subscribe-button.blade.php │ ├── tvshow-box.blade.php │ ├── tvshow-full-info.blade.php │ ├── tvshow-group.blade.php │ ├── tvshow-search-full.blade.php │ ├── tvshow-search.blade.php │ └── tvshow-timeline.blade.php │ ├── manual-css-classes.blade.php │ ├── navigation-menu.blade.php │ ├── policy.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── terms.blade.php │ ├── tvshow │ ├── full-info.blade.php │ ├── popular.blade.php │ ├── search-full.blade.php │ ├── timeline.blade.php │ └── user-subscribed.blade.php │ ├── vendor │ ├── horizon │ │ └── layout.blade.php │ └── sweetalert │ │ └── alert.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Extension │ ├── ApplicationStarted.php │ └── MyExtension.php ├── Feature │ ├── CrawlMostPopularTest.php │ ├── EmailSubscriptionTest.php │ ├── ExampleTest.php │ ├── HorizonPanelTest.php │ ├── JetStream │ │ ├── ApiTokenPermissionsTest.php │ │ ├── AuthenticationTest.php │ │ ├── BrowserSessionsTest.php │ │ ├── CreateApiTokenTest.php │ │ ├── DeleteAccountTest.php │ │ ├── DeleteApiTokenTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── ProfileInformationTest.php │ │ ├── RegistrationTest.php │ │ ├── TwoFactorAuthenticationSettingsTest.php │ │ └── UpdatePasswordTest.php │ ├── Livewire │ │ ├── Modals │ │ │ └── RegistrationRequiredTest.php │ │ ├── SubscribeButtonTest.php │ │ ├── TVShowBoxTest.php │ │ ├── TVShowFullInfoTest.php │ │ ├── TVShowGroupTest.php │ │ ├── TVShowSearchFullTest.php │ │ ├── TVShowSearchTest.php │ │ └── TVShowTimelineTest.php │ ├── PopularShowsTest.php │ ├── RemoteRequestTest.php │ ├── SubscriptionTest.php │ ├── TVShow │ │ └── SearchTVShowTest.php │ ├── TVShowDataTest.php │ ├── TVShowImdbTest.php │ ├── ToBeCrawledTest.php │ ├── TvShowModelTest.php │ ├── UpdateTVShowPopularityScoresTest.php │ └── UpdateTVShowsImdbInfoTest.php ├── TestCase.php └── Unit │ ├── ExampleTest.php │ ├── TVSeriesFinderTest.php │ └── TVShowTest.php ├── vite.config.js └── wait-for-it.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/Dockerfile.mysql -------------------------------------------------------------------------------- /Dockerfile.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/Dockerfile.nginx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/README.md -------------------------------------------------------------------------------- /deployment/config/mysql/create_database.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE tvalert; 2 | -------------------------------------------------------------------------------- /deployment/config/mysql/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/mysql/mysql.cnf -------------------------------------------------------------------------------- /deployment/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/nginx.conf -------------------------------------------------------------------------------- /deployment/config/php-fpm/php-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/php-fpm/php-dev.ini -------------------------------------------------------------------------------- /deployment/config/php-fpm/php-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/php-fpm/php-prod.ini -------------------------------------------------------------------------------- /deployment/config/php-fpm/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/php-fpm/www.conf -------------------------------------------------------------------------------- /deployment/config/supervisor/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/supervisor/logrotate -------------------------------------------------------------------------------- /deployment/config/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/deployment/config/supervisor/supervisord.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/.env.example -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /src/app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /src/app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /src/app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /src/app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /src/app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /src/app/Console/Commands/UpdateTVShowPopularityScores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Console/Commands/UpdateTVShowPopularityScores.php -------------------------------------------------------------------------------- /src/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Console/Kernel.php -------------------------------------------------------------------------------- /src/app/Data/Casts/TVShowStatusCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Data/Casts/TVShowStatusCast.php -------------------------------------------------------------------------------- /src/app/Data/EpisodeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Data/EpisodeData.php -------------------------------------------------------------------------------- /src/app/Data/SearchTVShowData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Data/SearchTVShowData.php -------------------------------------------------------------------------------- /src/app/Data/TVShowData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Data/TVShowData.php -------------------------------------------------------------------------------- /src/app/Events/LastAiredEpisodeDateUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Events/LastAiredEpisodeDateUpdated.php -------------------------------------------------------------------------------- /src/app/Events/NextEpisodeDateUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Events/NextEpisodeDateUpdated.php -------------------------------------------------------------------------------- /src/app/Events/TVShowCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Events/TVShowCreated.php -------------------------------------------------------------------------------- /src/app/Events/TVShowUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Events/TVShowUpdated.php -------------------------------------------------------------------------------- /src/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/TVShowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Controllers/TVShowController.php -------------------------------------------------------------------------------- /src/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Kernel.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /src/app/Jobs/CrawlMostPopularJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Jobs/CrawlMostPopularJob.php -------------------------------------------------------------------------------- /src/app/Jobs/CrawlNotRecentlyCrawledShowsJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Jobs/CrawlNotRecentlyCrawledShowsJob.php -------------------------------------------------------------------------------- /src/app/Jobs/SendEmailTVShowUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Jobs/SendEmailTVShowUpdate.php -------------------------------------------------------------------------------- /src/app/Jobs/UpdateImdbInfoOfTvShows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Jobs/UpdateImdbInfoOfTvShows.php -------------------------------------------------------------------------------- /src/app/Livewire/Modals/FullInfoModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/Modals/FullInfoModal.php -------------------------------------------------------------------------------- /src/app/Livewire/Modals/RegistrationRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/Modals/RegistrationRequired.php -------------------------------------------------------------------------------- /src/app/Livewire/SubscribeButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/SubscribeButton.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowBox.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowFullInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowFullInfo.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowGroup.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowSearch.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowSearchFull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowSearchFull.php -------------------------------------------------------------------------------- /src/app/Livewire/TVShowTimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Livewire/TVShowTimeline.php -------------------------------------------------------------------------------- /src/app/Mail/TVShowsUpdatesNotif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Mail/TVShowsUpdatesNotif.php -------------------------------------------------------------------------------- /src/app/Models/EmailSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Models/EmailSubscription.php -------------------------------------------------------------------------------- /src/app/Models/TVShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Models/TVShow.php -------------------------------------------------------------------------------- /src/app/Models/TVShowImdbInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Models/TVShowImdbInfo.php -------------------------------------------------------------------------------- /src/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Models/User.php -------------------------------------------------------------------------------- /src/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/app/TVShow/Crawling/CrawlMostPopular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Crawling/CrawlMostPopular.php -------------------------------------------------------------------------------- /src/app/TVShow/Crawling/CrawlNotRecentlyCrawledShows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Crawling/CrawlNotRecentlyCrawledShows.php -------------------------------------------------------------------------------- /src/app/TVShow/Crawling/MainCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Crawling/MainCrawler.php -------------------------------------------------------------------------------- /src/app/TVShow/Crawling/SeriesCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Crawling/SeriesCrawler.php -------------------------------------------------------------------------------- /src/app/TVShow/CreateOrUpdateStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/CreateOrUpdateStatus.php -------------------------------------------------------------------------------- /src/app/TVShow/CreateOrUpdateTVShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/CreateOrUpdateTVShow.php -------------------------------------------------------------------------------- /src/app/TVShow/EmailSubscriptions/EmailSubscriptionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/EmailSubscriptions/EmailSubscriptionManager.php -------------------------------------------------------------------------------- /src/app/TVShow/RemoteData/GetRemoteMostPopularTVShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/RemoteData/GetRemoteMostPopularTVShow.php -------------------------------------------------------------------------------- /src/app/TVShow/RemoteData/GetRemoteTVShowInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/RemoteData/GetRemoteTVShowInfo.php -------------------------------------------------------------------------------- /src/app/TVShow/RemoteData/RemoteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/RemoteData/RemoteRequest.php -------------------------------------------------------------------------------- /src/app/TVShow/RemoteData/SearchRemoteTVShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/RemoteData/SearchRemoteTVShow.php -------------------------------------------------------------------------------- /src/app/TVShow/SearchTVShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/SearchTVShow.php -------------------------------------------------------------------------------- /src/app/TVShow/TVShowImdbFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/TVShowImdbFinder.php -------------------------------------------------------------------------------- /src/app/TVShow/TVShowStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/TVShowStatus.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Timeline.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/TimelineFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/TimelineFormatter.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/TimelineSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/TimelineSection.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/FutureTimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/FutureTimeline.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/HasDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/HasDuration.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/HasEpisodeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/HasEpisodeField.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/PastTimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/PastTimeline.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/Timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/Timeline.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/TimelineInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/TimelineInfo.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/TimelineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/TimelineType.php -------------------------------------------------------------------------------- /src/app/TVShow/Timeline/Types/TodayTimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/Timeline/Types/TodayTimeline.php -------------------------------------------------------------------------------- /src/app/TVShow/UpdateTVShowsImdbInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/TVShow/UpdateTVShowsImdbInfo.php -------------------------------------------------------------------------------- /src/app/Tools/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/Tools/helpers.php -------------------------------------------------------------------------------- /src/app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /src/app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /src/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/artisan -------------------------------------------------------------------------------- /src/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/bootstrap/app.php -------------------------------------------------------------------------------- /src/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/composer.lock -------------------------------------------------------------------------------- /src/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/app.php -------------------------------------------------------------------------------- /src/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/auth.php -------------------------------------------------------------------------------- /src/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/broadcasting.php -------------------------------------------------------------------------------- /src/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/cache.php -------------------------------------------------------------------------------- /src/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/cors.php -------------------------------------------------------------------------------- /src/config/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/data.php -------------------------------------------------------------------------------- /src/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/database.php -------------------------------------------------------------------------------- /src/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/filesystems.php -------------------------------------------------------------------------------- /src/config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/fortify.php -------------------------------------------------------------------------------- /src/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/hashing.php -------------------------------------------------------------------------------- /src/config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/horizon.php -------------------------------------------------------------------------------- /src/config/insights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/insights.php -------------------------------------------------------------------------------- /src/config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/jetstream.php -------------------------------------------------------------------------------- /src/config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/livewire.php -------------------------------------------------------------------------------- /src/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/logging.php -------------------------------------------------------------------------------- /src/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/mail.php -------------------------------------------------------------------------------- /src/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/queue.php -------------------------------------------------------------------------------- /src/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/sanctum.php -------------------------------------------------------------------------------- /src/config/scout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/scout.php -------------------------------------------------------------------------------- /src/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/services.php -------------------------------------------------------------------------------- /src/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/session.php -------------------------------------------------------------------------------- /src/config/sweetalert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/sweetalert.php -------------------------------------------------------------------------------- /src/config/tvshow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/tvshow.php -------------------------------------------------------------------------------- /src/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/config/view.php -------------------------------------------------------------------------------- /src/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /src/database/factories/EmailSubscriptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/factories/EmailSubscriptionFactory.php -------------------------------------------------------------------------------- /src/database/factories/TVShowFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/factories/TVShowFactory.php -------------------------------------------------------------------------------- /src/database/factories/TVShowImdbInfoFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/factories/TVShowImdbInfoFactory.php -------------------------------------------------------------------------------- /src/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/factories/UserFactory.php -------------------------------------------------------------------------------- /src/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /src/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /src/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /src/database/migrations/2023_07_03_145651_create_t_v_shows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2023_07_03_145651_create_t_v_shows_table.php -------------------------------------------------------------------------------- /src/database/migrations/2023_08_16_114817_create_subscription_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2023_08_16_114817_create_subscription_table.php -------------------------------------------------------------------------------- /src/database/migrations/2023_08_22_114346_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2023_08_22_114346_create_sessions_table.php -------------------------------------------------------------------------------- /src/database/migrations/2023_10_15_195856_add_email_subscriptin_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2023_10_15_195856_add_email_subscriptin_field.php -------------------------------------------------------------------------------- /src/database/migrations/2023_10_15_200907_create_email_subscriptions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2023_10_15_200907_create_email_subscriptions_table.php -------------------------------------------------------------------------------- /src/database/migrations/2024_06_11_122255_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2024_06_11_122255_create_cache_table.php -------------------------------------------------------------------------------- /src/database/migrations/2024_06_11_123741_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2024_06_11_123741_create_jobs_table.php -------------------------------------------------------------------------------- /src/database/migrations/2025_08_24_000000_add_imdb_fields_to_tvshows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2025_08_24_000000_add_imdb_fields_to_tvshows_table.php -------------------------------------------------------------------------------- /src/database/migrations/2025_08_24_000002_create_tv_show_imdb_info_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2025_08_24_000002_create_tv_show_imdb_info_table.php -------------------------------------------------------------------------------- /src/database/migrations/2025_09_22_000000_add_popularity_score_to_tv_show_imdb_info_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/migrations/2025_09_22_000000_add_popularity_score_to_tv_show_imdb_info_table.php -------------------------------------------------------------------------------- /src/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /src/database/seeders/TVShowSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/seeders/TVShowSeeder.php -------------------------------------------------------------------------------- /src/database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/package.json -------------------------------------------------------------------------------- /src/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/phpstan.neon.dist -------------------------------------------------------------------------------- /src/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/phpunit.xml -------------------------------------------------------------------------------- /src/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/postcss.config.js -------------------------------------------------------------------------------- /src/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/.htaccess -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/index.php -------------------------------------------------------------------------------- /src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/public/vendor/horizon/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/app-dark.css -------------------------------------------------------------------------------- /src/public/vendor/horizon/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/app.css -------------------------------------------------------------------------------- /src/public/vendor/horizon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/app.js -------------------------------------------------------------------------------- /src/public/vendor/horizon/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/img/favicon.png -------------------------------------------------------------------------------- /src/public/vendor/horizon/img/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/img/horizon.svg -------------------------------------------------------------------------------- /src/public/vendor/horizon/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/img/sprite.svg -------------------------------------------------------------------------------- /src/public/vendor/horizon/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/horizon/mix-manifest.json -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/sweetalert.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/sweetalert.all.js -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-bootstrap-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-bootstrap-4.css -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-borderless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-borderless.css -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-bulma.css -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-dark.css -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-material-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-material-ui.css -------------------------------------------------------------------------------- /src/public/vendor/sweetalert/theme/theme-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/public/vendor/sweetalert/theme/theme-minimal.css -------------------------------------------------------------------------------- /src/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/css/app.css -------------------------------------------------------------------------------- /src/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/js/app.js -------------------------------------------------------------------------------- /src/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/js/bootstrap.js -------------------------------------------------------------------------------- /src/resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/markdown/policy.md -------------------------------------------------------------------------------- /src/resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/markdown/terms.md -------------------------------------------------------------------------------- /src/resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /src/resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /src/resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/action-section.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/application-mark.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/authentication-card.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/confirms-password.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/form-section.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/section-border.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/section-title.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/switchable-team.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/validation-errors.blade.php -------------------------------------------------------------------------------- /src/resources/views/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/components/welcome.blade.php -------------------------------------------------------------------------------- /src/resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /src/resources/views/emails/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/emails/team-invitation.blade.php -------------------------------------------------------------------------------- /src/resources/views/emails/today_tvshows.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/emails/today_tvshows.blade.php -------------------------------------------------------------------------------- /src/resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /src/resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/modals/full-info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/modals/full-info.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/modals/registration-required.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/modals/registration-required.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/partials/email-subscription-option.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/partials/email-subscription-option.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/partials/imdb-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/partials/imdb-link.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/partials/load-more-timeline-btn.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/partials/load-more-timeline-btn.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/partials/loading-indicator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/partials/loading-indicator.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/partials/sorting-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/partials/sorting-box.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/subscribe-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/subscribe-button.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-box.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-full-info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-full-info.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-group.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-search-full.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-search-full.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-search.blade.php -------------------------------------------------------------------------------- /src/resources/views/livewire/tvshow-timeline.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/livewire/tvshow-timeline.blade.php -------------------------------------------------------------------------------- /src/resources/views/manual-css-classes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/manual-css-classes.blade.php -------------------------------------------------------------------------------- /src/resources/views/navigation-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/navigation-menu.blade.php -------------------------------------------------------------------------------- /src/resources/views/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/policy.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /src/resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /src/resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/terms.blade.php -------------------------------------------------------------------------------- /src/resources/views/tvshow/full-info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/tvshow/full-info.blade.php -------------------------------------------------------------------------------- /src/resources/views/tvshow/popular.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/tvshow/popular.blade.php -------------------------------------------------------------------------------- /src/resources/views/tvshow/search-full.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/tvshow/search-full.blade.php -------------------------------------------------------------------------------- /src/resources/views/tvshow/timeline.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/tvshow/timeline.blade.php -------------------------------------------------------------------------------- /src/resources/views/tvshow/user-subscribed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/tvshow/user-subscribed.blade.php -------------------------------------------------------------------------------- /src/resources/views/vendor/horizon/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/vendor/horizon/layout.blade.php -------------------------------------------------------------------------------- /src/resources/views/vendor/sweetalert/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/vendor/sweetalert/alert.blade.php -------------------------------------------------------------------------------- /src/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /src/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/routes/api.php -------------------------------------------------------------------------------- /src/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/routes/channels.php -------------------------------------------------------------------------------- /src/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/routes/console.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/routes/web.php -------------------------------------------------------------------------------- /src/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/storage/framework/.gitignore -------------------------------------------------------------------------------- /src/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/CreatesApplication.php -------------------------------------------------------------------------------- /src/tests/Extension/ApplicationStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Extension/ApplicationStarted.php -------------------------------------------------------------------------------- /src/tests/Extension/MyExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Extension/MyExtension.php -------------------------------------------------------------------------------- /src/tests/Feature/CrawlMostPopularTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/CrawlMostPopularTest.php -------------------------------------------------------------------------------- /src/tests/Feature/EmailSubscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/EmailSubscriptionTest.php -------------------------------------------------------------------------------- /src/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /src/tests/Feature/HorizonPanelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/HorizonPanelTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/AuthenticationTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/BrowserSessionsTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/CreateApiTokenTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/DeleteAccountTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/EmailVerificationTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/PasswordResetTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/ProfileInformationTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/RegistrationTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /src/tests/Feature/JetStream/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/JetStream/UpdatePasswordTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/Modals/RegistrationRequiredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/Modals/RegistrationRequiredTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/SubscribeButtonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/SubscribeButtonTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowBoxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowBoxTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowFullInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowFullInfoTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowGroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowGroupTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowSearchFullTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowSearchFullTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowSearchTest.php -------------------------------------------------------------------------------- /src/tests/Feature/Livewire/TVShowTimelineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/Livewire/TVShowTimelineTest.php -------------------------------------------------------------------------------- /src/tests/Feature/PopularShowsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/PopularShowsTest.php -------------------------------------------------------------------------------- /src/tests/Feature/RemoteRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/RemoteRequestTest.php -------------------------------------------------------------------------------- /src/tests/Feature/SubscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/SubscriptionTest.php -------------------------------------------------------------------------------- /src/tests/Feature/TVShow/SearchTVShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/TVShow/SearchTVShowTest.php -------------------------------------------------------------------------------- /src/tests/Feature/TVShowDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/TVShowDataTest.php -------------------------------------------------------------------------------- /src/tests/Feature/TVShowImdbTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/TVShowImdbTest.php -------------------------------------------------------------------------------- /src/tests/Feature/ToBeCrawledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/ToBeCrawledTest.php -------------------------------------------------------------------------------- /src/tests/Feature/TvShowModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/TvShowModelTest.php -------------------------------------------------------------------------------- /src/tests/Feature/UpdateTVShowPopularityScoresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/UpdateTVShowPopularityScoresTest.php -------------------------------------------------------------------------------- /src/tests/Feature/UpdateTVShowsImdbInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Feature/UpdateTVShowsImdbInfoTest.php -------------------------------------------------------------------------------- /src/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/TestCase.php -------------------------------------------------------------------------------- /src/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /src/tests/Unit/TVSeriesFinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Unit/TVSeriesFinderTest.php -------------------------------------------------------------------------------- /src/tests/Unit/TVShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/tests/Unit/TVShowTest.php -------------------------------------------------------------------------------- /src/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/vite.config.js -------------------------------------------------------------------------------- /src/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asefsoft/tv-alert/HEAD/src/wait-for-it.sh --------------------------------------------------------------------------------