├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── LiveCodeCoverage │ ├── CodeCoverageFactory.php │ ├── LiveCodeCoverage.php │ ├── RemoteCodeCoverage.php │ └── Storage.php └── test └── functional ├── LiveCodeCoverageTest.php ├── phpunit.xml.dist ├── prepend.php └── src ├── a.php └── b.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/LiveCodeCoverage/CodeCoverageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/src/LiveCodeCoverage/CodeCoverageFactory.php -------------------------------------------------------------------------------- /src/LiveCodeCoverage/LiveCodeCoverage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/src/LiveCodeCoverage/LiveCodeCoverage.php -------------------------------------------------------------------------------- /src/LiveCodeCoverage/RemoteCodeCoverage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/src/LiveCodeCoverage/RemoteCodeCoverage.php -------------------------------------------------------------------------------- /src/LiveCodeCoverage/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/src/LiveCodeCoverage/Storage.php -------------------------------------------------------------------------------- /test/functional/LiveCodeCoverageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/test/functional/LiveCodeCoverageTest.php -------------------------------------------------------------------------------- /test/functional/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/test/functional/phpunit.xml.dist -------------------------------------------------------------------------------- /test/functional/prepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/test/functional/prepend.php -------------------------------------------------------------------------------- /test/functional/src/a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/test/functional/src/a.php -------------------------------------------------------------------------------- /test/functional/src/b.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasnoback/live-code-coverage/HEAD/test/functional/src/b.php --------------------------------------------------------------------------------