2017 © Pedro Peláez
 

library company-name-generator

Generate names for English tech companies with class

image

fzaninotto/company-name-generator

Generate names for English tech companies with class

  • Tuesday, February 20, 2018
  • by fzaninotto
  • Repository
  • 5 Watchers
  • 56 Stars
  • 8,025 Installations
  • PHP
  • 3 Dependents
  • 2 Suggesters
  • 9 Forks
  • 0 Open issues
  • 1 Versions
  • 11 % Grown

The README.md

CompanyNameGenerator™: A Company Name Generator

Generate names for English tech companies with class., (*1)

Why Should I Use CompanyNameGenerator™?

This library will help you if:, (*2)

  • You are founding a tech company but you don't know how to name it
  • You want to check if a company name is original of if its creators had no imagination and let the computer craft it

How Does It Work?

This generator contains dictionaries of culinary terms and tech terms. By mixing them together, it manages to create plausible company names. Awesomesauce!, (*3)

Installation

Add the CompanyNameGenerator™ library to your composer.json file:, (*4)

{
  "require": {
    "fzaninotto/company-name-generator": "dev-master"
  }
}

Then use composer to complete the installation process., (*5)

Usage

Use the new CompanyNameGenerator\FakerProvider class in combination with Faker to produce an infinite number of tech company names., (*6)

<?php

require __DIR__ .'/vendor/autoload.php';

$faker = Faker\Factory::create();
$faker->addProvider(new CompanyNameGenerator\FakerProvider($faker));
for ($i=0; $i < 20; $i++) {
    echo $faker->companyName, "\n";
}

This snippet generates 20 awesome company names. Here is an example output from CompanyNameGenerator™:, (*7)

ExceptionRosemary
DevelopmentPing
ToolMango
CoderScalable
ConstantCircuit
DeprecatedCooker
PingPesto
ITMega
ScalablePie
BinaryComputing
MashupMill
StuffMashup
ExportRouter
OverTaste
ClusterRender
StreamingThread
LemonMeta
ChocolateHacker
CyberBug
RaisinSmart

The Versions

20/02 2018

dev-master

9999999-dev https://github.com/fzaninotto/CompanyNameGenerator

Generate names for English tech companies with class

  Sources   Download

MIT

The Requires

 

by François Zaninotto