gitextract_joqugs2b/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ └── config.yml │ ├── dependabot.yml │ └── workflows/ │ ├── dependabot-auto-merge.yml │ ├── deploy-docs.yml │ ├── fix-php-code-style-issues.yml │ ├── run-tests.yml │ └── update-changelog.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── updater.php ├── database/ │ └── factories/ │ └── ModelFactory.php ├── phpunit.xml.dist ├── renovate.json ├── resources/ │ └── views/ │ └── .gitkeep ├── src/ │ ├── Commands/ │ │ ├── CheckCommand.php │ │ └── UpdaterCommand.php │ ├── Contracts/ │ │ ├── Pipeline.php │ │ └── Repository.php │ ├── Events/ │ │ ├── NewVersionAvailable.php │ │ ├── UpdateFailed.php │ │ └── UpdatedSuccessfully.php │ ├── Exceptions/ │ │ ├── GitFailedException.php │ │ └── GithubConfigException.php │ ├── Facades/ │ │ └── Updater.php │ ├── Helpers/ │ │ ├── Git.php │ │ └── Helper.php │ ├── Pipelines/ │ │ ├── ArtisanCallCacheClearPipe.php │ │ ├── ArtisanCallConfigClearPipe.php │ │ ├── ArtisanCallMigratePipe.php │ │ ├── ArtisanCallOptimizePipe.php │ │ ├── ArtisanCallRouteClearPipe.php │ │ ├── ArtisanCallViewClearPipe.php │ │ ├── GitPipe.php │ │ └── SeedersPipe.php │ ├── RepositorySource/ │ │ └── GithubRepository.php │ ├── Updater.php │ └── UpdaterServiceProvider.php ├── tests/ │ ├── ArchTest.php │ ├── Commands/ │ │ ├── CheckCommandTest.php │ │ └── UpdaterCommandTest.php │ ├── ExampleTest.php │ ├── GitTest.php │ ├── HelperTest.php │ ├── Pest.php │ ├── Pipelines/ │ │ ├── ArtisanCallCacheClearPipeTest.php │ │ ├── ArtisanCallConfigClearPipeTest.php │ │ ├── ArtisanCallMigratePipeTest.php │ │ ├── ArtisanCallOptimizePipeTest.php │ │ ├── ArtisanCallRouteClearPipeTest.php │ │ ├── ArtisanCallViewClearPipeTest.php │ │ ├── GitPipeTest.php │ │ └── SeedersPipeTest.php │ ├── RepositorySource/ │ │ └── GithubRepositoryTest.php │ ├── TestCase.php │ └── UpdaterTest.php └── workbench/ └── app/ └── Providers/ └── WorkbenchServiceProvider.php