/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/README.md (1446B)
# Bake plugin for CakePHP

[](https://packagist.org/packages/cakephp/bake)
[](https://codecov.io/github/cakephp/bake)
[](LICENSE.txt)
This project provides the code generation functionality for CakePHP. Through a
suite of CLI tools, you can quickly and easily generate code for your application.
## Installation
You can install this plugin into your CakePHP application using [composer](https://getcomposer.org).
The recommended way to install composer packages is:
```
composer require --dev cakephp/bake
```
## Documentation
You can find the documentation for bake [on its own cookbook](https://book.cakephp.org/bake/2).
## Testing
After installing dependencies with composer you can run tests with `phpunit`:
```bash
vendor/bin/phpunit
```
If your changes require changing the templates that bake uses, you can save time updating tests, by
enabling bake's 'overwrite fixture feature'. This will let you re-generate the expected output files
without having to manually edit each one:
```bash
UPDATE_TEST_COMPARISON_FILES=1 vendor/bin/phpunit
```