├── .gitignore ├── CliSummaryReport.php ├── HtmlSummaryReport.php ├── LICENSE ├── Makefile ├── README.md ├── SymfonyExtension.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CliSummaryReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/CliSummaryReport.php -------------------------------------------------------------------------------- /HtmlSummaryReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/HtmlSummaryReport.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/README.md -------------------------------------------------------------------------------- /SymfonyExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/SymfonyExtension.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmetrics/SymfonyExtension/HEAD/composer.json --------------------------------------------------------------------------------