%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/vendor/cakephp/bake/ |
Upload File : |
# Bake plugin for CakePHP [](https://travis-ci.org/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](http://getcomposer.org). The recommended way to install composer packages is: ``` composer require --dev cakephp/bake ``` ## Documentation You can find the documentation for bake [on the cookbook](http://book.cakephp.org/3.0/en/bake.html). ## 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 ```