All Projects → liderman → php-text-generator

liderman / php-text-generator

Licence: MIT license
Fast SEO text generator on a mask.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to php-text-generator

text-generator
Golang text generator for generate SEO texts
Stars: ✭ 18 (-5.26%)
Mutual labels:  seo, text-generation, seo-optimization, textpattern, text-generator
SeoTags
SeoTags create all SEO tags you need such as meta, link, twitter card (twitter:), open graph (og:), and JSON-LD schema (structred data).
Stars: ✭ 113 (+494.74%)
Mutual labels:  seo, seo-optimization
Silverstripe-SEO
A SilverStripe module to optimise the Meta, crawling, indexing, and sharing of your website content
Stars: ✭ 41 (+115.79%)
Mutual labels:  seo, seo-optimization
seotool
New version of my keyword tracking tool with additional features - works currently for google.de!
Stars: ✭ 52 (+173.68%)
Mutual labels:  seo, seo-optimization
ecommercetools
EcommerceTools is a Python data science toolkit for ecommerce, marketing science, and technical SEO analysis and modelling and was created by Matt Clarke.
Stars: ✭ 41 (+115.79%)
Mutual labels:  seo, seo-optimization
Google-rank-tracker
SEO: Python script + shell script and cronjob to check ranks on a daily basis
Stars: ✭ 124 (+552.63%)
Mutual labels:  seo, seo-optimization
seo-genius
Lightweight WordPress SEO plugin
Stars: ✭ 15 (-21.05%)
Mutual labels:  seo, seo-optimization
people-also-ask
People also ask Google scraper. Get as many questions as you need to optimize your site for voice or new content ideas or answering questions about your desired topic.
Stars: ✭ 39 (+105.26%)
Mutual labels:  seo, seo-optimization
drupal 8 unset html head link
🤖 Module for unset any wrong HTML links (like rel="delete-form", rel="edit-form", etc.) from head on Drupal 8.x websites. This is trust way to grow up position in SERP Google, Yandex, etc.
Stars: ✭ 19 (+0%)
Mutual labels:  seo, seo-optimization
poke
A simple tool to check your site for broken links, media, iframes, stylesheets, scripts, forms or metadata.
Stars: ✭ 24 (+26.32%)
Mutual labels:  seo, seo-optimization
silverstripe-seo
An all-in-one SEO module for SilverStripe 4.1+
Stars: ✭ 35 (+84.21%)
Mutual labels:  seo, seo-optimization
spiderable-middleware
🤖 Prerendering for JavaScript powered websites. Great solution for PWAs (Progressive Web Apps), SPAs (Single Page Applications), and other websites based on top of front-end JavaScript frameworks
Stars: ✭ 29 (+52.63%)
Mutual labels:  seo, seo-optimization
SEO-Manager-Electron
Generates SEO Report Easily
Stars: ✭ 24 (+26.32%)
Mutual labels:  seo, seo-optimization
Rendora
dynamic server-side rendering using headless Chrome to effortlessly solve the SEO problem for modern javascript websites
Stars: ✭ 1,853 (+9652.63%)
Mutual labels:  seo, seo-optimization
framework
A stylish PHP application framework crafted using Slim, Twig, Eloquent and Sentinel designed to get you from clone to production in a matter of minutes.
Stars: ✭ 56 (+194.74%)
Mutual labels:  seo, seo-optimization
DNZ.SEOChecker
SEO Checker and Recommander Plugin (like wordpress Yoast) for ASP.NET Core.
Stars: ✭ 18 (-5.26%)
Mutual labels:  seo, seo-optimization
pagespeedParseR
pagespeedParseR is an R wrapper for Google Pagespeed Insights API, that also enables convenient parsing
Stars: ✭ 20 (+5.26%)
Mutual labels:  seo, seo-optimization
awesome-search-engine-optimization
A curated list of backlink, social signal opportunities, and link building strategies and tactics to help improve search engine results and ranking.
Stars: ✭ 82 (+331.58%)
Mutual labels:  seo, seo-optimization
magento2-module-seo
Magento 2 Module for Search Engine Optimization
Stars: ✭ 100 (+426.32%)
Mutual labels:  seo, seo-optimization
angular-app
Angular 14 ,Bootstrap 5, Node.js, Express.js, ESLint, CRUD, PWA, SSR, SEO, Universal, Lazy Loading
Stars: ✭ 389 (+1947.37%)
Mutual labels:  seo

php-text-generator

Fast SEO text generator on a mask.

Written in PHP. I do not use regular expressions and the fastest. I covered tests and simple! Supporting recursive text generation rules. It supports multiple encodings.

This package implements the functionality of a similar package for Go Lang – text-generator.

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Installation

composer require liderman/php-text-generator

Usage

An example of a simple template text generation:

$textGen = new TextGenerator();
echo $textGen->generate("Good {morning|day}!");
// Displays: Good morning!
// or
// Good day!

An example of a complex generation template text:

$textGen = new TextGenerator();
echo $textGen->generate("{Good {morning|evening|day}|Goodnight|Hello}, {friend|brother}! {How are you|What's new with you}?");
// Displays: Good morning, friend! How are you?
// or
// Good day, brother! What's new with you?
// or
// Hello, friend! How are you?
// ...

Features

  • It supports multiple encodings
  • Supporting recursive text generation rules
  • Fast! Does not use regular expressions
  • Easy wrapping thanks to the integrated interface
  • Covered tests
  • Written by PSR standards and 100% covered with documentation (PHP-Doc)
  • Without external dependencies
  • The code is checked by the static analyzer PhpStan lvl 7

Requirements

  • PHP >= 7.1
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].