Download the PHP package ttree/identicons without Composer

On this page you can find all versions of the php package ttree/identicons. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package identicons


Neos Flow Framework Package to generate Identicons

This contains the Flow Framework package "Ttree.Identicons" to generate Identicons. Currently only two generators are available: Don Park (original version) and Github Style (inspired by the space invader style identicons provided by github).


Installation

  1. Just install and activate the package
  2. Include the package subroutes in your main Routes.yaml (optional: if you use only the fluid ViewHelper)
-
  name: 'Identicons'
  uriPattern: 'i/<IdenticonsSubroutes>'
  subRoutes:
	IdenticonsSubroutes:
	  package: Ttree.Identicons

If you change the , please read the section Flood Mitigation.

  1. Configure Imagine to use the drive. GD driver generate bad artifacts.
  2. Go to www.yourdomain/i/[yourhash].png (replace [yourhash] by any string)

This package is available on Packagist.org: https://packagist.org/packages/ttree/identicons


Settings

SettingDescriptionDefault Value
persistEnable persistanceTRUE
sizeDefault size (h/w) of the square icon420
backgroundColorDefault background color#EEE
ttlHTTP Cache header TTL in seconds2592000
sizeSize constraints32 / 2048
flood.enableActivate Flood mitigationTRUE
flood.limitMaximum number of request per minute30
access.enableEnable advanced access limitationFALSE

Request Arguments


Flood Mitigation

By default this package limit the request rate per minute (for a single IP address) to 30 requests. You can change this in Settings.yaml. The flood mitigation use the caching framework to store request rate statistics, please change the default FileBackend for a production use.

Important: When an IP address is blocked, for a maximum of 1 minute, the Application Firewall block the request early in the Flow bootstrap (when a request arrive at the MVC dispatcher). If you don't use the default URL www.domain/i/hash.png, you need to change the patternValue in Settings.yaml, in the Flow Application Firewall section.


Advanced access limitation

By default this package will generate an identicons for any hash, if you need to limit this, per ex. you need to generate identicon only for existing Party, you can implement the interface AccessValidationInterface and enable access validation in the settings.

You also need to change the default implementation for this interface in your Objects.yaml (check the Objects.yaml from this package for the syntax).


Fluid ViewHelpers

You can insert an identicon in your Fluid template by using the provided ImageViewHelper.

{namespace identicon=Ttree\Identicons\ViewHelpers}
<identicon:image hash="ttree" alt="ttree -- identicon" size="42" class="img-polaroid" />

If the identicon doesn't exist for the provided hash, it will be created and persisted automatically.

Warning: Advanced Access Limitation and Flood Mitigation are not supported by the Fluid ViewHelper, you need to take care of your server by yourself.


Tips

You can write your own generator, just implement the GeneratorInterface and change the default implementation in your Objects.yaml (check the Objects.yaml from this package for the syntax).

Warning: if you change the Generator, currently you need to truncate the table "ttree_identicons_domain_model_identicon" manually.


Identicons Samples


All versions of identicons with dependencies

PHP Build Version
Package Version
Requires neos/flow Version ^5.0
neos/imagine Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ttree/identicons contains the following files

Loading the files please wait ....