├── .github └── workflows │ └── run_tests.yml ├── .gitignore ├── README.md ├── bin └── cactus ├── composer.json ├── src ├── Cactus.php ├── CactusErrorHandler.php └── Exception │ ├── DepedencyException.php │ └── RunTimeException.php └── test └── sampleProject ├── composer.json ├── phpunit.xml ├── tests └── CactusTest.php └── toBeCompiled ├── shouldBeCompiled.php └── shouldNotBeCompiled.txt /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/README.md -------------------------------------------------------------------------------- /bin/cactus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/bin/cactus -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/composer.json -------------------------------------------------------------------------------- /src/Cactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/src/Cactus.php -------------------------------------------------------------------------------- /src/CactusErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/src/CactusErrorHandler.php -------------------------------------------------------------------------------- /src/Exception/DepedencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/src/Exception/DepedencyException.php -------------------------------------------------------------------------------- /src/Exception/RunTimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/src/Exception/RunTimeException.php -------------------------------------------------------------------------------- /test/sampleProject/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/test/sampleProject/composer.json -------------------------------------------------------------------------------- /test/sampleProject/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/test/sampleProject/phpunit.xml -------------------------------------------------------------------------------- /test/sampleProject/tests/CactusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/test/sampleProject/tests/CactusTest.php -------------------------------------------------------------------------------- /test/sampleProject/toBeCompiled/shouldBeCompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notihnio/php-cactus/HEAD/test/sampleProject/toBeCompiled/shouldBeCompiled.php -------------------------------------------------------------------------------- /test/sampleProject/toBeCompiled/shouldNotBeCompiled.txt: -------------------------------------------------------------------------------- 1 | txt file 2 | --------------------------------------------------------------------------------