├── .gitattributes ├── .gitignore ├── .php-cs-fixer.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSIONING.md ├── bin └── git-commit.sh ├── composer.json ├── doc ├── autocommit.md ├── configuration.md └── demo.gif ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src ├── ChangelogsPlugin.php ├── Config │ ├── ConfigBuilder.php │ └── ConfigLocator.php ├── Factory.php ├── Model │ ├── Config.php │ ├── Repository.php │ └── Version.php ├── OperationHandler │ ├── InstallHandler.php │ ├── OperationHandler.php │ ├── UninstallHandler.php │ └── UpdateHandler.php ├── Outputter.php ├── UrlGenerator │ ├── BitbucketUrlGenerator.php │ ├── GitBasedUrlGenerator.php │ ├── GithubUrlGenerator.php │ ├── GitlabUrlGenerator.php │ ├── UrlGenerator.php │ └── WordPressUrlGenerator.php └── Util │ └── FileSystemHelper.php └── tests ├── ChangelogsPluginTest.php ├── Config ├── ConfigBuilderTest.php └── ConfigLocatorTest.php ├── OperationHandler ├── InstallHandlerTest.php ├── UninstallHandlerTest.php └── UpdateHandlerTest.php ├── OutputterTest.php ├── UrlGenerator ├── BitbucketUrlGeneratorTest.php ├── GithubUrlGeneratorTest.php ├── GitlabUrlGeneratorTest.php └── WordPressUrlGeneratorTest.php ├── Util └── FileSystemHelperTest.php ├── VersionTest.php ├── fixtures ├── bin │ └── fake.sh ├── home-commit-message │ └── composer.json ├── home │ └── composer.json ├── local │ └── composer.json └── other-post-update-priority │ └── composer.json └── resources ├── FakeHandler.php ├── FakeOperation.php └── FakeUrlGenerator.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/VERSIONING.md -------------------------------------------------------------------------------- /bin/git-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/bin/git-commit.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/composer.json -------------------------------------------------------------------------------- /doc/autocommit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/doc/autocommit.md -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/doc/demo.gif -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ChangelogsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/ChangelogsPlugin.php -------------------------------------------------------------------------------- /src/Config/ConfigBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Config/ConfigBuilder.php -------------------------------------------------------------------------------- /src/Config/ConfigLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Config/ConfigLocator.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Model/Config.php -------------------------------------------------------------------------------- /src/Model/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Model/Repository.php -------------------------------------------------------------------------------- /src/Model/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Model/Version.php -------------------------------------------------------------------------------- /src/OperationHandler/InstallHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/OperationHandler/InstallHandler.php -------------------------------------------------------------------------------- /src/OperationHandler/OperationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/OperationHandler/OperationHandler.php -------------------------------------------------------------------------------- /src/OperationHandler/UninstallHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/OperationHandler/UninstallHandler.php -------------------------------------------------------------------------------- /src/OperationHandler/UpdateHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/OperationHandler/UpdateHandler.php -------------------------------------------------------------------------------- /src/Outputter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Outputter.php -------------------------------------------------------------------------------- /src/UrlGenerator/BitbucketUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/BitbucketUrlGenerator.php -------------------------------------------------------------------------------- /src/UrlGenerator/GitBasedUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/GitBasedUrlGenerator.php -------------------------------------------------------------------------------- /src/UrlGenerator/GithubUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/GithubUrlGenerator.php -------------------------------------------------------------------------------- /src/UrlGenerator/GitlabUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/GitlabUrlGenerator.php -------------------------------------------------------------------------------- /src/UrlGenerator/UrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/UrlGenerator.php -------------------------------------------------------------------------------- /src/UrlGenerator/WordPressUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/UrlGenerator/WordPressUrlGenerator.php -------------------------------------------------------------------------------- /src/Util/FileSystemHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/src/Util/FileSystemHelper.php -------------------------------------------------------------------------------- /tests/ChangelogsPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/ChangelogsPluginTest.php -------------------------------------------------------------------------------- /tests/Config/ConfigBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/Config/ConfigBuilderTest.php -------------------------------------------------------------------------------- /tests/Config/ConfigLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/Config/ConfigLocatorTest.php -------------------------------------------------------------------------------- /tests/OperationHandler/InstallHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/OperationHandler/InstallHandlerTest.php -------------------------------------------------------------------------------- /tests/OperationHandler/UninstallHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/OperationHandler/UninstallHandlerTest.php -------------------------------------------------------------------------------- /tests/OperationHandler/UpdateHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/OperationHandler/UpdateHandlerTest.php -------------------------------------------------------------------------------- /tests/OutputterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/OutputterTest.php -------------------------------------------------------------------------------- /tests/UrlGenerator/BitbucketUrlGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/UrlGenerator/BitbucketUrlGeneratorTest.php -------------------------------------------------------------------------------- /tests/UrlGenerator/GithubUrlGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/UrlGenerator/GithubUrlGeneratorTest.php -------------------------------------------------------------------------------- /tests/UrlGenerator/GitlabUrlGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/UrlGenerator/GitlabUrlGeneratorTest.php -------------------------------------------------------------------------------- /tests/UrlGenerator/WordPressUrlGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/UrlGenerator/WordPressUrlGeneratorTest.php -------------------------------------------------------------------------------- /tests/Util/FileSystemHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/Util/FileSystemHelperTest.php -------------------------------------------------------------------------------- /tests/VersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/VersionTest.php -------------------------------------------------------------------------------- /tests/fixtures/bin/fake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/fixtures/bin/fake.sh -------------------------------------------------------------------------------- /tests/fixtures/home-commit-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/fixtures/home-commit-message/composer.json -------------------------------------------------------------------------------- /tests/fixtures/home/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/fixtures/home/composer.json -------------------------------------------------------------------------------- /tests/fixtures/local/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/fixtures/local/composer.json -------------------------------------------------------------------------------- /tests/fixtures/other-post-update-priority/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/fixtures/other-post-update-priority/composer.json -------------------------------------------------------------------------------- /tests/resources/FakeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/resources/FakeHandler.php -------------------------------------------------------------------------------- /tests/resources/FakeOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/resources/FakeOperation.php -------------------------------------------------------------------------------- /tests/resources/FakeUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrech/composer-changelogs/HEAD/tests/resources/FakeUrlGenerator.php --------------------------------------------------------------------------------