https://github.com/ciricihq/cake-metatags
Metatags plugin for Cake 3.x
https://github.com/ciricihq/cake-metatags
cake-plugin cakephp meta metatags plugin tags
Last synced: 21 days ago
JSON representation
Metatags plugin for Cake 3.x
- Host: GitHub
- URL: https://github.com/ciricihq/cake-metatags
- Owner: ciricihq
- License: gpl-3.0
- Created: 2016-11-16T09:29:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-21T17:57:57.000Z (over 8 years ago)
- Last Synced: 2025-04-09T19:57:36.365Z (21 days ago)
- Topics: cake-plugin, cakephp, meta, metatags, plugin, tags
- Language: PHP
- Size: 2.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Metatags plugin for CakePHP 3
============================[![Build status][build svg]][build status]
[![Code coveralls][coveralls svg]][coveralls]
[![License][license svg]][license]
[![Latest stable version][releases svg]][releases]
[![Total downloads][downloads svg]][downloads][build status]: https://travis-ci.org/ciricihq/cake-metatags
[coveralls]: https://coveralls.io/github/ciricihq/cake-metatags
[license]: https://github.com/ciricihq/cake-metatags/blob/master/LICENSE.md
[releases]: https://github.com/ciricihq/cake-metatags/releases
[downloads]: https://packagist.org/packages/ciricihq/cake-metatags[build svg]: https://img.shields.io/travis/ciricihq/cake-metatags/master.svg?style=flat-square
[coveralls svg]: https://img.shields.io/coveralls/c/github/ciricihq/cake-metatags/master.svg?style=flat-square
[license svg]: https://img.shields.io/github/license/ciricihq/cake-metatags.svg?style=flat-square
[releases svg]: https://img.shields.io/github/release/ciricihq/cake-metatags.svg?style=flat-square
[downloads svg]: https://img.shields.io/packagist/dt/ciricihq/cake-metatags.svg?style=flat-square## 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 ciricihq/cake-metatags
```
Execute migration```
bin/cake migrations migrate --plugin Cirici/Metatags
```
Execute seed```
bin/cake migrations seed --plugin Cirici/Metatags
```Configuration
-------------First you need to load the plugin. To do so, edit your `bootstrap.php` file and
add line below:```php
Plugin::load('Metatags', ['bootstrap' => true]);
```