├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json └── src ├── Cache.php ├── Plugin.php └── TruncatedComposerRepository.php /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/TruncatedComposerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/symfony-clean-tags-composer-plugin/HEAD/src/TruncatedComposerRepository.php --------------------------------------------------------------------------------