├── LICENSE ├── README.md ├── bin └── detect-collisions ├── cache └── .gitkeep ├── composer.json ├── composer.lock ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist └── src ├── CollisionDetector.php ├── DetectionConfig.php ├── DetectionResult.php ├── Exception ├── FileParsingException.php ├── InvalidConfigException.php └── RuntimeException.php └── FileLine.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/README.md -------------------------------------------------------------------------------- /bin/detect-collisions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/bin/detect-collisions -------------------------------------------------------------------------------- /cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CollisionDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/CollisionDetector.php -------------------------------------------------------------------------------- /src/DetectionConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/DetectionConfig.php -------------------------------------------------------------------------------- /src/DetectionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/DetectionResult.php -------------------------------------------------------------------------------- /src/Exception/FileParsingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/Exception/FileParsingException.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/Exception/InvalidConfigException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/FileLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shipmonk-rnd/name-collision-detector/HEAD/src/FileLine.php --------------------------------------------------------------------------------