php_koans
php_koans copied to clipboard
Learn PHP with Koans using PHPUnit
Rather than manually checking in the latest phpunit.phar file and rename it to `contemplate_koans`, we should make it an automatic download/checksum/chmod/rename via CI (github actions) whenever new code is pushed...
Because PHPUnit 10 [did away with the `printerClass` config setting](https://github.com/sebastianbergmann/phpunit/issues/4807), the band-new-developer friendly output no longer works. There is a new event base architecture that needs to be used, either...
Due to the latest updates to PHP 8.1, running the koan using php contemplate_koans is not working anymore, see picture below: We can improve the way koans are executed and...
Resolves #12 There were different errors when running the Koans with contemplate_koans. In this PR, I remove the comtemplate_koans file which is really large and difficult to follow and I...
Implements test for methods: - is_null - empty - isset
Implemented two news PHP Koans, ArrayKoans and RegularExpressionKoans. Implemented new koans to familiarize the user with the arrays and with the commands to use regular expressions.