bernardosecades / php-skeleton-kata
php skeleton kata
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bernardosecades/php-skeleton-kata
Requires
- php: ^7.0
Requires (Dev)
- phpunit/phpunit: ^6.1
This package is not auto-updated.
Last update: 2025-10-04 00:17:56 UTC
README
A code kata is an exercise in programming which helps a programmer hone their skills through practice and repetition. The term was probably first coined by Dave Thomas, co-author of the book The Pragmatic Programmer, in a bow to the Japanese concept of kata in the martial arts.
Start new PHP Kata
If you want to start a new kata:
Use 'create-project' command of composer for clonate this template
composer create-project bernardosecades/php-skeleton-kata /your-app-directory/my-kata dev-master
Then add your classes to 'src/Kata' and your test cases to 'tests' and run 'php bin/phpunit' to run your tests.
bin/phpunit
The coverage will be generated in folder tests-coverage
.