WARNING THIS VERSION IS NO MORE SUPPORTED
Application was migrated to the organization phpkata
To install the application:
- clone the project
git clone https://github.com/yvoyer/php-kata.git
- Go at the root of the install folder
- Run
php composer.phar install
Running unit tests: phpunit
Running integration tests: bin/behat
Starting a kata: php phpkata.php start {kata-name}
Evaluate the kata: php phpkata.php continue
Listing katas: php phpkata.php list
(Not available yet)
Reset environment: php phpkata.php reset
(Not available yet)
- Assign yourself a task
- Create a branch from the master branch named
feature/{task-number}
ie.feature/123
- Develop the feature
- Commit and push with a commit message following the standard
- Create a pull request with
master
as the destination.
Commit messages should follow this format
Fix #{task-number} - Short description about feature
* Add more information about feature
* Add some more information about feature
Example
Fix #123 - Add registration of user
* Add more information about feature
* Add some more information about feature