Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bedita/placeholders
A BEdita plugin to handle placeholders.
https://github.com/bedita/placeholders
Last synced: 21 days ago
JSON representation
A BEdita plugin to handle placeholders.
- Host: GitHub
- URL: https://github.com/bedita/placeholders
- Owner: bedita
- License: lgpl-3.0
- Created: 2022-02-24T13:07:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T15:33:05.000Z (about 1 year ago)
- Last Synced: 2024-10-27T01:42:04.654Z (about 2 months ago)
- Language: PHP
- Size: 74.2 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.LGPL
Awesome Lists containing this project
README
# Placeholders plugin for BEdita
[![Github Actions PHP](https://github.com/bedita/placeholders/workflows/php/badge.svg)](https://github.com/bedita/placeholders/actions?query=workflow%3Aphp)
[![codecov](https://codecov.io/gh/bedita/placeholders/branch/main/graph/badge.svg)](https://codecov.io/gh/bedita/placeholders)
[![phpstan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg)](https://phpstan.org)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/bedita/placeholders/badges/quality-score.png)](https://scrutinizer-ci.com/g/bedita/placeholders/)
[![Version](https://img.shields.io/packagist/v/bedita/placeholders.svg?label=stable)](https://packagist.org/packages/bedita/placeholders)
[![License](https://img.shields.io/badge/License-LGPL_v3-orange.svg)](https://github.com/bedita/placeholders/blob/main/LICENSE.LGPL)## 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 bedita/placeholders
```## Usage
Add the plugin to your application:
**src/Application.php**
```php
$this->addPlugin('BEdita/Placeholders');
```and run plugin migrations to create the `placeholder` relation:
```sh
$ bin/cake migrations migrate -p BEdita/Placeholders
```