├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock └── src ├── DiffPlugin.php └── IO.php /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /src/DiffPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/src/DiffPlugin.php -------------------------------------------------------------------------------- /src/IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercari/composer-diff-plugin/HEAD/src/IO.php --------------------------------------------------------------------------------