Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cakephp/bake
The Bake Command Plugin
https://github.com/cakephp/bake
cakephp cakephp-plugin code-generation php
Last synced: 3 months ago
JSON representation
The Bake Command Plugin
- Host: GitHub
- URL: https://github.com/cakephp/bake
- Owner: cakephp
- License: other
- Created: 2014-12-08T19:22:54.000Z (almost 10 years ago)
- Default Branch: 3.x
- Last Pushed: 2024-07-20T04:20:11.000Z (4 months ago)
- Last Synced: 2024-07-20T05:35:16.622Z (4 months ago)
- Topics: cakephp, cakephp-plugin, code-generation, php
- Language: PHP
- Size: 6.38 MB
- Stars: 110
- Watchers: 35
- Forks: 100
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-cakephp - Bake plugin - Provides code generation functionality. (Templating)
README
# Bake plugin for CakePHP
![Build Status](https://github.com/cakephp/bake/actions/workflows/ci.yml/badge.svg?branch=master)
[![Latest Stable Version](https://img.shields.io/github/v/release/cakephp/bake?sort=semver&style=flat-square)](https://packagist.org/packages/cakephp/bake)
[![Coverage Status](https://img.shields.io/codecov/c/github/cakephp/bake.svg?style=flat-square)](https://codecov.io/github/cakephp/bake)
[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](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/3).
## 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
```