dereuromark / cakephp-tags
Tags plugin for CakePHP
Installs: 46 249
Dependents: 1
Suggesters: 0
Security: 0
Stars: 14
Watchers: 7
Forks: 10
Open Issues: 3
Type:cakephp-plugin
Requires
- php: >=8.1
- cakephp/cakephp: ^5.0.0
Requires (Dev)
- cakephp/migrations: ^4.0.1
- dereuromark/cakephp-tools: ^3.0.0
- fig-r/psr2r-sniffer: dev-master
- phpunit/phpunit: ^10.2
- robmorgan/phinx: ^0.15
README
Make tagging of entities a piece of cake.
This branch is for CakePHP 5.0+. For details see version map.
Install
Using Composer:
composer require dereuromark/cakephp-tags
You then need to load the plugin. In src/Application.php
, something like:
public function bootstrap() { parent::bootstrap(); $this->addPlugin('Tags'); }
Also don't forget to run migration (e.g. using Migrations plugin):
bin/cake migrations migrate -p Tags
Demo
See Sandbox @ https://sandbox.dereuromark.de/sandbox/tags
Tutorial and Blog Post: https://www.dereuromark.de/2018/07/12/tutorial-cakephp-tagging/
Documentation
For documentation, as well as tutorials, see the docs directory of this repository.