├── .github └── workflows │ ├── continuous-integration.yml │ └── release-on-milestone-closed.yml ├── .laminas-ci.json ├── LICENSE ├── README.md ├── bin ├── roave-no-leaks └── roave-no-leaks.php ├── composer.json ├── composer.lock ├── renovate.json └── src ├── CollectTestExecutionMemoryFootprints.php ├── EmptyBaselineMemoryUsageTest.php ├── MeasuredBaselineTestMemoryLeak.php └── MeasuredTestRunMemoryLeak.php /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release-on-milestone-closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/.github/workflows/release-on-milestone-closed.yml -------------------------------------------------------------------------------- /.laminas-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/.laminas-ci.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/README.md -------------------------------------------------------------------------------- /bin/roave-no-leaks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/bin/roave-no-leaks -------------------------------------------------------------------------------- /bin/roave-no-leaks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/bin/roave-no-leaks.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/composer.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/renovate.json -------------------------------------------------------------------------------- /src/CollectTestExecutionMemoryFootprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/src/CollectTestExecutionMemoryFootprints.php -------------------------------------------------------------------------------- /src/EmptyBaselineMemoryUsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/src/EmptyBaselineMemoryUsageTest.php -------------------------------------------------------------------------------- /src/MeasuredBaselineTestMemoryLeak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/src/MeasuredBaselineTestMemoryLeak.php -------------------------------------------------------------------------------- /src/MeasuredTestRunMemoryLeak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/no-leaks/HEAD/src/MeasuredTestRunMemoryLeak.php --------------------------------------------------------------------------------