├── .gitignore ├── .gush.yml ├── .php_cs ├── Dockerfile ├── LICENSE ├── README.md ├── circle.yml ├── composer.json ├── gush ├── gush.dist ├── phpunit.xml ├── src ├── Adapter │ ├── Adapter.php │ ├── BaseAdapter.php │ ├── BaseIssueTracker.php │ ├── Configurator.php │ ├── DefaultConfigurator.php │ ├── IssueTracker.php │ └── SupportsDynamicLabels.php ├── Application.php ├── Command │ ├── BaseCommand.php │ ├── Branch │ │ ├── BranchChangelogCommand.php │ │ ├── BranchDeleteCommand.php │ │ ├── BranchForkCommand.php │ │ ├── BranchMergeCommand.php │ │ ├── BranchPushCommand.php │ │ ├── BranchRemoteAddCommand.php │ │ └── BranchSyncCommand.php │ ├── Core │ │ ├── AutocompleteCommand.php │ │ ├── CoreConfigureCommand.php │ │ └── InitCommand.php │ ├── HelpCommand.php │ ├── Issue │ │ ├── IssueAssignCommand.php │ │ ├── IssueCloseCommand.php │ │ ├── IssueCopyCommand.php │ │ ├── IssueCreateCommand.php │ │ ├── IssueLabelListCommand.php │ │ ├── IssueListCommand.php │ │ ├── IssueMilestoneListCommand.php │ │ ├── IssueShowCommand.php │ │ ├── IssueTakeCommand.php │ │ └── LabelIssuesCommand.php │ ├── PullRequest │ │ ├── PullRequestAssignCommand.php │ │ ├── PullRequestCheckoutCommand.php │ │ ├── PullRequestCloseCommand.php │ │ ├── PullRequestCreateCommand.php │ │ ├── PullRequestFixerCommand.php │ │ ├── PullRequestLabelListCommand.php │ │ ├── PullRequestListCommand.php │ │ ├── PullRequestMergeCommand.php │ │ ├── PullRequestMilestoneListCommand.php │ │ ├── PullRequestPatOnTheBackCommand.php │ │ ├── PullRequestSemVerCommand.php │ │ ├── PullRequestShowCommand.php │ │ ├── PullRequestSquashCommand.php │ │ └── PullRequestSwitchBaseCommand.php │ ├── Release │ │ ├── ReleaseCreateCommand.php │ │ ├── ReleaseListCommand.php │ │ └── ReleaseRemoveCommand.php │ ├── Repository │ │ └── RepositoryCreateCommand.php │ └── Util │ │ ├── DocumentationCommand.php │ │ ├── MetaConfigureCommand.php │ │ ├── MetaHeaderCommand.php │ │ └── StyleCIPatchCommand.php ├── Config.php ├── ConfigFactory.php ├── Event │ └── GushEvents.php ├── Exception │ ├── AdapterException.php │ ├── CannotSquashMultipleAuthors.php │ ├── FileNotFoundException.php │ ├── InvalidStateException.php │ ├── MergeWorkflowException.php │ ├── NotImplementedException.php │ ├── UnsupportedOperationException.php │ ├── UnsupportedTypeException.php │ ├── UserException.php │ └── WorkingTreeIsNotReady.php ├── Factory │ ├── AdapterFactory.php │ ├── IssueTrackerFactory.php │ └── RepositoryManagerFactory.php ├── Feature │ ├── GitDirectoryFeature.php │ ├── GitRepoFeature.php │ ├── IssueTrackerRepoFeature.php │ ├── TableFeature.php │ └── TemplateFeature.php ├── Helper │ ├── AutocompleteHelper.php │ ├── DownloadHelper.php │ ├── EditorHelper.php │ ├── FilesystemHelper.php │ ├── GitConfigHelper.php │ ├── GitHelper.php │ ├── GitRepoHelper.php │ ├── GushQuestionHelper.php │ ├── MetaHelper.php │ ├── OutputAwareInterface.php │ ├── ProcessHelper.php │ ├── StyleHelper.php │ ├── TableHelper.php │ ├── TemplateHelper.php │ └── TextHelper.php ├── Meta │ ├── Base.php │ ├── Iterator │ │ └── PathFilterIterator.php │ ├── Meta.php │ ├── Text.php │ └── Twig.php ├── Operation │ ├── RemoteMergeOperation.php │ └── RemotePatchOperation.php ├── Subscriber │ ├── BaseGitRepoSubscriber.php │ ├── CommandEndSubscriber.php │ ├── CoreInitSubscriber.php │ ├── GitDirectorySubscriber.php │ ├── GitRepoSubscriber.php │ ├── TableSubscriber.php │ └── TemplateSubscriber.php ├── Template │ ├── AbstractTemplate.php │ ├── Messages.php │ ├── Meta │ │ └── Header │ │ │ ├── GPL3Template.php │ │ │ ├── MITTemplate.php │ │ │ └── NoLicenseTemplate.php │ ├── Pats │ │ ├── PatTemplate.php │ │ └── Pats.php │ ├── PullRequest │ │ └── Create │ │ │ ├── AbstractSymfonyTemplate.php │ │ │ ├── DefaultTemplate.php │ │ │ ├── EnterpriseTemplate.php │ │ │ ├── PullRequestCustomTemplate.php │ │ │ ├── SymfonyDocTemplate.php │ │ │ ├── SymfonyTemplate.php │ │ │ ├── ZendFrameworkDocTemplate.php │ │ │ └── ZendFrameworkTemplate.php │ └── TemplateInterface.php ├── ThirdParty │ ├── Bitbucket │ │ ├── BitBucketClient.php │ │ ├── BitBucketConfigurator.php │ │ ├── BitbucketAdapter.php │ │ ├── BitbucketFactory.php │ │ ├── BitbucketIssueTracker.php │ │ ├── BitbucketRepoAdapter.php │ │ ├── Listener │ │ │ ├── ErrorListener.php │ │ │ └── ResultPagerListener.php │ │ └── ResultPager.php │ ├── Github │ │ ├── GitHubAdapter.php │ │ ├── GitHubConfigurator.php │ │ ├── GitHubEnterpriseAdapter.php │ │ ├── GitHubEnterpriseFactory.php │ │ └── GitHubFactory.php │ └── Gitlab │ │ ├── Adapter │ │ ├── GitLabAdapter.php │ │ ├── GitLabIssueTracker.php │ │ └── GitLabRepoAdapter.php │ │ ├── GitLabFactory.php │ │ ├── GitlabConfigurator.php │ │ └── Model │ │ ├── Issue.php │ │ ├── MergeRequest.php │ │ ├── Project.php │ │ └── User.php ├── Util │ ├── ArrayUtil.php │ ├── CliValidator.php │ └── StringUtil.php └── Validator │ └── MergeWorkflowValidator.php └── tests ├── BaseTestCase.php ├── Command ├── Branch │ ├── BranchChangelogCommandTest.php │ ├── BranchDeleteCommandTest.php │ ├── BranchForkCommandTest.php │ ├── BranchMergeCommandTest.php │ ├── BranchPushCommandTest.php │ ├── BranchRemoteAddCommandTest.php │ └── BranchSyncCommandTest.php ├── CommandTestCase.php ├── CommandTester.php ├── Core │ ├── CoreConfigureCommandTest.php │ └── CoreInitCommandTest.php ├── Issue │ ├── IssueAssignCommandTest.php │ ├── IssueCloseCommandTest.php │ ├── IssueCopyCommandTest.php │ ├── IssueCreateCommandTest.php │ ├── IssueLabelListCommandTest.php │ ├── IssueListCommandTest.php │ ├── IssueMilestoneListCommandTest.php │ ├── IssueShowCommandTest.php │ └── IssueTakeCommandTest.php ├── PullRequest │ ├── PullRequestAssignCommandTest.php │ ├── PullRequestCheckoutCommandTest.php │ ├── PullRequestCloseCommandTest.php │ ├── PullRequestCreateCommandTest.php │ ├── PullRequestFixerCommandTest.php │ ├── PullRequestLabelListCommandTest.php │ ├── PullRequestListCommandTest.php │ ├── PullRequestMergeCommandTest.php │ ├── PullRequestMilestoneListCommandTest.php │ ├── PullRequestPatOnTheBackCommandTest.php │ ├── PullRequestSemVerCommandTest.php │ ├── PullRequestShowCommandTest.php │ ├── PullRequestSquashCommandTest.php │ └── PullRequestSwitchBaseCommandTest.php ├── Release │ └── ReleaseListCommandTest.php └── Util │ ├── MetaConfigureCommandTest.php │ └── MetaHeaderCommandTest.php ├── ConfigFactoryTest.php ├── ConfigTest.php ├── Factory └── AdapterFactoryTest.php ├── Fixtures ├── Adapter │ ├── TestAdapter.php │ ├── TestAdapterFactory.php │ ├── TestConfigurator.php │ ├── TestIssueTracker.php │ ├── TestIssueTrackerFactory.php │ └── TestRepoManagerFactory.php ├── Command │ ├── GitDirectoryCommand.php │ ├── GitRepoCommand.php │ └── TemplateTestCommand.php ├── OutputFixtures.php └── meta │ ├── metatest.css │ ├── metatest.js │ ├── metatest.php │ └── metatest.twig ├── Helper ├── AutocompleteHelperTest.php ├── EditorHelperTest.php ├── GitConfigHelperTest.php ├── GitHelperTest.php ├── GitRepoHelperTest.php ├── MetaHelperTest.php ├── ProcessHelperTest.php ├── TemplateHelperTest.php └── TextHelperTest.php ├── Subscriber ├── GitDirectorySubscriberTest.php ├── GitRepoSubscriberTest.php ├── TableSubscriberTest.php ├── TestGitRepoCommand.php └── TestTableCommand.php ├── Template ├── Pats │ └── PatTemplateTest.php └── PullRequest │ └── Create │ ├── PullRequestCustomTemplateTest.php │ └── SymfonyTemplateTest.php ├── TestableApplication.php └── Validator └── MergeWorkflowValidatorTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /*.lock 3 | -------------------------------------------------------------------------------- /.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/.gush.yml -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/.php_cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/composer.json -------------------------------------------------------------------------------- /gush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/gush -------------------------------------------------------------------------------- /gush.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/gush.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Adapter/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/Adapter.php -------------------------------------------------------------------------------- /src/Adapter/BaseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/BaseAdapter.php -------------------------------------------------------------------------------- /src/Adapter/BaseIssueTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/BaseIssueTracker.php -------------------------------------------------------------------------------- /src/Adapter/Configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/Configurator.php -------------------------------------------------------------------------------- /src/Adapter/DefaultConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/DefaultConfigurator.php -------------------------------------------------------------------------------- /src/Adapter/IssueTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/IssueTracker.php -------------------------------------------------------------------------------- /src/Adapter/SupportsDynamicLabels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Adapter/SupportsDynamicLabels.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/BaseCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchChangelogCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchChangelogCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchDeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchDeleteCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchForkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchForkCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchMergeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchMergeCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchPushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchPushCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchRemoteAddCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchRemoteAddCommand.php -------------------------------------------------------------------------------- /src/Command/Branch/BranchSyncCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Branch/BranchSyncCommand.php -------------------------------------------------------------------------------- /src/Command/Core/AutocompleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Core/AutocompleteCommand.php -------------------------------------------------------------------------------- /src/Command/Core/CoreConfigureCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Core/CoreConfigureCommand.php -------------------------------------------------------------------------------- /src/Command/Core/InitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Core/InitCommand.php -------------------------------------------------------------------------------- /src/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/HelpCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueAssignCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueAssignCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueCloseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueCloseCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueCopyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueCopyCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueCreateCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueLabelListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueLabelListCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueListCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueMilestoneListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueMilestoneListCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueShowCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueShowCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/IssueTakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/IssueTakeCommand.php -------------------------------------------------------------------------------- /src/Command/Issue/LabelIssuesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Issue/LabelIssuesCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestAssignCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestAssignCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestCheckoutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestCheckoutCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestCloseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestCloseCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestCreateCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestFixerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestFixerCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestLabelListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestLabelListCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestListCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestMergeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestMergeCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestMilestoneListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestMilestoneListCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestPatOnTheBackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestPatOnTheBackCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestSemVerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestSemVerCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestShowCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestShowCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestSquashCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestSquashCommand.php -------------------------------------------------------------------------------- /src/Command/PullRequest/PullRequestSwitchBaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/PullRequest/PullRequestSwitchBaseCommand.php -------------------------------------------------------------------------------- /src/Command/Release/ReleaseCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Release/ReleaseCreateCommand.php -------------------------------------------------------------------------------- /src/Command/Release/ReleaseListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Release/ReleaseListCommand.php -------------------------------------------------------------------------------- /src/Command/Release/ReleaseRemoveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Release/ReleaseRemoveCommand.php -------------------------------------------------------------------------------- /src/Command/Repository/RepositoryCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Repository/RepositoryCreateCommand.php -------------------------------------------------------------------------------- /src/Command/Util/DocumentationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Util/DocumentationCommand.php -------------------------------------------------------------------------------- /src/Command/Util/MetaConfigureCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Util/MetaConfigureCommand.php -------------------------------------------------------------------------------- /src/Command/Util/MetaHeaderCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Util/MetaHeaderCommand.php -------------------------------------------------------------------------------- /src/Command/Util/StyleCIPatchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Command/Util/StyleCIPatchCommand.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ConfigFactory.php -------------------------------------------------------------------------------- /src/Event/GushEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Event/GushEvents.php -------------------------------------------------------------------------------- /src/Exception/AdapterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/AdapterException.php -------------------------------------------------------------------------------- /src/Exception/CannotSquashMultipleAuthors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/CannotSquashMultipleAuthors.php -------------------------------------------------------------------------------- /src/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/FileNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/InvalidStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/InvalidStateException.php -------------------------------------------------------------------------------- /src/Exception/MergeWorkflowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/MergeWorkflowException.php -------------------------------------------------------------------------------- /src/Exception/NotImplementedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/NotImplementedException.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/UnsupportedOperationException.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/UnsupportedTypeException.php -------------------------------------------------------------------------------- /src/Exception/UserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/UserException.php -------------------------------------------------------------------------------- /src/Exception/WorkingTreeIsNotReady.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Exception/WorkingTreeIsNotReady.php -------------------------------------------------------------------------------- /src/Factory/AdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Factory/AdapterFactory.php -------------------------------------------------------------------------------- /src/Factory/IssueTrackerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Factory/IssueTrackerFactory.php -------------------------------------------------------------------------------- /src/Factory/RepositoryManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Factory/RepositoryManagerFactory.php -------------------------------------------------------------------------------- /src/Feature/GitDirectoryFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Feature/GitDirectoryFeature.php -------------------------------------------------------------------------------- /src/Feature/GitRepoFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Feature/GitRepoFeature.php -------------------------------------------------------------------------------- /src/Feature/IssueTrackerRepoFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Feature/IssueTrackerRepoFeature.php -------------------------------------------------------------------------------- /src/Feature/TableFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Feature/TableFeature.php -------------------------------------------------------------------------------- /src/Feature/TemplateFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Feature/TemplateFeature.php -------------------------------------------------------------------------------- /src/Helper/AutocompleteHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/AutocompleteHelper.php -------------------------------------------------------------------------------- /src/Helper/DownloadHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/DownloadHelper.php -------------------------------------------------------------------------------- /src/Helper/EditorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/EditorHelper.php -------------------------------------------------------------------------------- /src/Helper/FilesystemHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/FilesystemHelper.php -------------------------------------------------------------------------------- /src/Helper/GitConfigHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/GitConfigHelper.php -------------------------------------------------------------------------------- /src/Helper/GitHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/GitHelper.php -------------------------------------------------------------------------------- /src/Helper/GitRepoHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/GitRepoHelper.php -------------------------------------------------------------------------------- /src/Helper/GushQuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/GushQuestionHelper.php -------------------------------------------------------------------------------- /src/Helper/MetaHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/MetaHelper.php -------------------------------------------------------------------------------- /src/Helper/OutputAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/OutputAwareInterface.php -------------------------------------------------------------------------------- /src/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /src/Helper/StyleHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/StyleHelper.php -------------------------------------------------------------------------------- /src/Helper/TableHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/TableHelper.php -------------------------------------------------------------------------------- /src/Helper/TemplateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/TemplateHelper.php -------------------------------------------------------------------------------- /src/Helper/TextHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Helper/TextHelper.php -------------------------------------------------------------------------------- /src/Meta/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Meta/Base.php -------------------------------------------------------------------------------- /src/Meta/Iterator/PathFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Meta/Iterator/PathFilterIterator.php -------------------------------------------------------------------------------- /src/Meta/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Meta/Meta.php -------------------------------------------------------------------------------- /src/Meta/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Meta/Text.php -------------------------------------------------------------------------------- /src/Meta/Twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Meta/Twig.php -------------------------------------------------------------------------------- /src/Operation/RemoteMergeOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Operation/RemoteMergeOperation.php -------------------------------------------------------------------------------- /src/Operation/RemotePatchOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Operation/RemotePatchOperation.php -------------------------------------------------------------------------------- /src/Subscriber/BaseGitRepoSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/BaseGitRepoSubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/CommandEndSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/CommandEndSubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/CoreInitSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/CoreInitSubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/GitDirectorySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/GitDirectorySubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/GitRepoSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/GitRepoSubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/TableSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/TableSubscriber.php -------------------------------------------------------------------------------- /src/Subscriber/TemplateSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Subscriber/TemplateSubscriber.php -------------------------------------------------------------------------------- /src/Template/AbstractTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/AbstractTemplate.php -------------------------------------------------------------------------------- /src/Template/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Messages.php -------------------------------------------------------------------------------- /src/Template/Meta/Header/GPL3Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Meta/Header/GPL3Template.php -------------------------------------------------------------------------------- /src/Template/Meta/Header/MITTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Meta/Header/MITTemplate.php -------------------------------------------------------------------------------- /src/Template/Meta/Header/NoLicenseTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Meta/Header/NoLicenseTemplate.php -------------------------------------------------------------------------------- /src/Template/Pats/PatTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Pats/PatTemplate.php -------------------------------------------------------------------------------- /src/Template/Pats/Pats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/Pats/Pats.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/AbstractSymfonyTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/AbstractSymfonyTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/DefaultTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/DefaultTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/EnterpriseTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/EnterpriseTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/PullRequestCustomTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/PullRequestCustomTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/SymfonyDocTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/SymfonyDocTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/SymfonyTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/SymfonyTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/ZendFrameworkDocTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/ZendFrameworkDocTemplate.php -------------------------------------------------------------------------------- /src/Template/PullRequest/Create/ZendFrameworkTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/PullRequest/Create/ZendFrameworkTemplate.php -------------------------------------------------------------------------------- /src/Template/TemplateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Template/TemplateInterface.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitBucketClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitBucketClient.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitBucketConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitBucketConfigurator.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitbucketAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitbucketAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitbucketFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitbucketFactory.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitbucketIssueTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitbucketIssueTracker.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/BitbucketRepoAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/BitbucketRepoAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/Listener/ErrorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/Listener/ErrorListener.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/Listener/ResultPagerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/Listener/ResultPagerListener.php -------------------------------------------------------------------------------- /src/ThirdParty/Bitbucket/ResultPager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Bitbucket/ResultPager.php -------------------------------------------------------------------------------- /src/ThirdParty/Github/GitHubAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Github/GitHubAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Github/GitHubConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Github/GitHubConfigurator.php -------------------------------------------------------------------------------- /src/ThirdParty/Github/GitHubEnterpriseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Github/GitHubEnterpriseAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Github/GitHubEnterpriseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Github/GitHubEnterpriseFactory.php -------------------------------------------------------------------------------- /src/ThirdParty/Github/GitHubFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Github/GitHubFactory.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Adapter/GitLabAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Adapter/GitLabAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Adapter/GitLabIssueTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Adapter/GitLabIssueTracker.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Adapter/GitLabRepoAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Adapter/GitLabRepoAdapter.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/GitLabFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/GitLabFactory.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/GitlabConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/GitlabConfigurator.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Model/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Model/Issue.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Model/MergeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Model/MergeRequest.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Model/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Model/Project.php -------------------------------------------------------------------------------- /src/ThirdParty/Gitlab/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/ThirdParty/Gitlab/Model/User.php -------------------------------------------------------------------------------- /src/Util/ArrayUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Util/ArrayUtil.php -------------------------------------------------------------------------------- /src/Util/CliValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Util/CliValidator.php -------------------------------------------------------------------------------- /src/Util/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Util/StringUtil.php -------------------------------------------------------------------------------- /src/Validator/MergeWorkflowValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/src/Validator/MergeWorkflowValidator.php -------------------------------------------------------------------------------- /tests/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/BaseTestCase.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchChangelogCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchChangelogCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchDeleteCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchDeleteCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchForkCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchForkCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchMergeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchMergeCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchPushCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchPushCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchRemoteAddCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchRemoteAddCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Branch/BranchSyncCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Branch/BranchSyncCommandTest.php -------------------------------------------------------------------------------- /tests/Command/CommandTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/CommandTestCase.php -------------------------------------------------------------------------------- /tests/Command/CommandTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/CommandTester.php -------------------------------------------------------------------------------- /tests/Command/Core/CoreConfigureCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Core/CoreConfigureCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Core/CoreInitCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Core/CoreInitCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueAssignCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueAssignCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueCloseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueCloseCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueCopyCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueCopyCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueCreateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueCreateCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueLabelListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueLabelListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueMilestoneListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueMilestoneListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueShowCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueShowCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Issue/IssueTakeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Issue/IssueTakeCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestAssignCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestAssignCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestCheckoutCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestCheckoutCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestCloseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestCloseCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestCreateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestCreateCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestFixerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestFixerCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestLabelListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestLabelListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestMergeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestMergeCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestMilestoneListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestMilestoneListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestPatOnTheBackCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestPatOnTheBackCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestSemVerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestSemVerCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestShowCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestShowCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestSquashCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestSquashCommandTest.php -------------------------------------------------------------------------------- /tests/Command/PullRequest/PullRequestSwitchBaseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/PullRequest/PullRequestSwitchBaseCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Release/ReleaseListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Release/ReleaseListCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Util/MetaConfigureCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Util/MetaConfigureCommandTest.php -------------------------------------------------------------------------------- /tests/Command/Util/MetaHeaderCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Command/Util/MetaHeaderCommandTest.php -------------------------------------------------------------------------------- /tests/ConfigFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/ConfigFactoryTest.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/Factory/AdapterFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Factory/AdapterFactoryTest.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestAdapter.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestAdapterFactory.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestConfigurator.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestIssueTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestIssueTracker.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestIssueTrackerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestIssueTrackerFactory.php -------------------------------------------------------------------------------- /tests/Fixtures/Adapter/TestRepoManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Adapter/TestRepoManagerFactory.php -------------------------------------------------------------------------------- /tests/Fixtures/Command/GitDirectoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Command/GitDirectoryCommand.php -------------------------------------------------------------------------------- /tests/Fixtures/Command/GitRepoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Command/GitRepoCommand.php -------------------------------------------------------------------------------- /tests/Fixtures/Command/TemplateTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/Command/TemplateTestCommand.php -------------------------------------------------------------------------------- /tests/Fixtures/OutputFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/OutputFixtures.php -------------------------------------------------------------------------------- /tests/Fixtures/meta/metatest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/meta/metatest.css -------------------------------------------------------------------------------- /tests/Fixtures/meta/metatest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/meta/metatest.js -------------------------------------------------------------------------------- /tests/Fixtures/meta/metatest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/meta/metatest.php -------------------------------------------------------------------------------- /tests/Fixtures/meta/metatest.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Fixtures/meta/metatest.twig -------------------------------------------------------------------------------- /tests/Helper/AutocompleteHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/AutocompleteHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/EditorHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/EditorHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/GitConfigHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/GitConfigHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/GitHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/GitHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/GitRepoHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/GitRepoHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/MetaHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/MetaHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/ProcessHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/ProcessHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/TemplateHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/TemplateHelperTest.php -------------------------------------------------------------------------------- /tests/Helper/TextHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Helper/TextHelperTest.php -------------------------------------------------------------------------------- /tests/Subscriber/GitDirectorySubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Subscriber/GitDirectorySubscriberTest.php -------------------------------------------------------------------------------- /tests/Subscriber/GitRepoSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Subscriber/GitRepoSubscriberTest.php -------------------------------------------------------------------------------- /tests/Subscriber/TableSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Subscriber/TableSubscriberTest.php -------------------------------------------------------------------------------- /tests/Subscriber/TestGitRepoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Subscriber/TestGitRepoCommand.php -------------------------------------------------------------------------------- /tests/Subscriber/TestTableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Subscriber/TestTableCommand.php -------------------------------------------------------------------------------- /tests/Template/Pats/PatTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Template/Pats/PatTemplateTest.php -------------------------------------------------------------------------------- /tests/Template/PullRequest/Create/PullRequestCustomTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Template/PullRequest/Create/PullRequestCustomTemplateTest.php -------------------------------------------------------------------------------- /tests/Template/PullRequest/Create/SymfonyTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Template/PullRequest/Create/SymfonyTemplateTest.php -------------------------------------------------------------------------------- /tests/TestableApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/TestableApplication.php -------------------------------------------------------------------------------- /tests/Validator/MergeWorkflowValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gushphp/gush/HEAD/tests/Validator/MergeWorkflowValidatorTest.php --------------------------------------------------------------------------------