gitextract_xx2gl39y/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── coding-standards.yml │ ├── continuous-integration.yml │ └── coverage.yml ├── .gitignore ├── .nvmrc ├── .php-cs-fixer.dist.php ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ └── console ├── composer.json ├── config/ │ ├── bundles.php │ ├── packages/ │ │ ├── cache.yaml │ │ ├── debug.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── github_api.yaml │ │ ├── http_discovery.yaml │ │ ├── knpu_oauth2_client.yaml │ │ ├── messenger.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── sentry.yaml │ │ ├── snc_redis.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── preload.php │ ├── reference.php │ ├── routes/ │ │ ├── framework.yaml │ │ ├── security.yaml │ │ └── web_profiler.yaml │ ├── routes.yaml │ ├── services.yaml │ └── services_test.yaml ├── data/ │ └── supervisor.conf ├── migrations/ │ ├── .gitignore │ ├── Version20170222055642.php │ ├── Version20170329095349.php │ ├── Version20180827105910.php │ ├── Version20200511062812.php │ ├── Version20200613153754.php │ └── Version20260408120000.php ├── phpstan.dist.neon ├── phpunit.xml.dist ├── public/ │ ├── css/ │ │ ├── banditore.css │ │ ├── grids-responsive-min.css │ │ └── pure-min.css │ ├── fonts/ │ │ ├── .gitkeep │ │ └── FontAwesome.otf │ ├── index.php │ ├── js/ │ │ └── banditore.js │ └── robots.txt ├── rector.php ├── src/ │ ├── Cache/ │ │ ├── CustomRedisCachePool.php │ │ ├── HierarchicalCachePoolTrait.php │ │ └── PredisCachePool.php │ ├── Command/ │ │ ├── SyncStarredReposCommand.php │ │ └── SyncVersionsCommand.php │ ├── Controller/ │ │ └── DefaultController.php │ ├── DataFixtures/ │ │ └── AppFixtures.php │ ├── Entity/ │ │ ├── Repo.php │ │ ├── Star.php │ │ ├── User.php │ │ └── Version.php │ ├── Github/ │ │ ├── ClientDiscovery.php │ │ └── RateLimitTrait.php │ ├── Kernel.php │ ├── Message/ │ │ ├── StarredReposSync.php │ │ └── VersionsSync.php │ ├── MessageHandler/ │ │ ├── StarredReposSyncHandler.php │ │ └── VersionsSyncHandler.php │ ├── Pagination/ │ │ ├── Exception/ │ │ │ ├── CallbackNotFoundException.php │ │ │ └── InvalidPageNumberException.php │ │ ├── Pagination.php │ │ ├── Paginator.php │ │ └── PaginatorInterface.php │ ├── PubSubHubbub/ │ │ └── Publisher.php │ ├── Repository/ │ │ ├── RepoRepository.php │ │ ├── StarRepository.php │ │ ├── UserRepository.php │ │ └── VersionRepository.php │ ├── Rss/ │ │ └── Generator.php │ ├── Security/ │ │ └── GithubAuthenticator.php │ ├── Twig/ │ │ ├── PaginationExtension.php │ │ └── RepoVersionExtension.php │ └── Webfeeds/ │ ├── Webfeeds.php │ └── WebfeedsWriter.php ├── templates/ │ ├── base.html.twig │ ├── bundles/ │ │ └── TwigBundle/ │ │ └── Exception/ │ │ └── error.html.twig │ └── default/ │ ├── _line_version.html.twig │ ├── _pagination.html.twig │ ├── dashboard.html.twig │ ├── index.html.twig │ └── stats.html.twig └── tests/ ├── Cache/ │ └── CustomRedisCachePoolTest.php ├── Command/ │ ├── SyncStarredReposCommandTest.php │ └── SyncVersionsCommandTest.php ├── Controller/ │ └── DefaultControllerTest.php ├── Github/ │ └── ClientDiscoveryTest.php ├── MessageHandler/ │ ├── StarredReposSyncHandlerTest.php │ └── VersionsSyncHandlerTest.php ├── PubSubHubbub/ │ └── PublisherTest.php ├── Repository/ │ ├── UserRepositoryTest.php │ └── VersionRepositoryTest.php ├── Rss/ │ └── GeneratorTest.php ├── Security/ │ └── GithubAuthenticatorTest.php ├── Twig/ │ └── RepoVersionExtensionTest.php ├── Webfeeds/ │ ├── WebfeedsTest.php │ └── WebfeedsWriterTest.php ├── bootstrap.php ├── console-application.php └── object-manager.php