├── LICENSE ├── composer.json └── src └── Identicon ├── Generator ├── BaseGenerator.php ├── GdGenerator.php ├── GeneratorInterface.php ├── ImageMagickGenerator.php └── SvgGenerator.php └── Identicon.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/composer.json -------------------------------------------------------------------------------- /src/Identicon/Generator/BaseGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Generator/BaseGenerator.php -------------------------------------------------------------------------------- /src/Identicon/Generator/GdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Generator/GdGenerator.php -------------------------------------------------------------------------------- /src/Identicon/Generator/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Generator/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Identicon/Generator/ImageMagickGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Generator/ImageMagickGenerator.php -------------------------------------------------------------------------------- /src/Identicon/Generator/SvgGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Generator/SvgGenerator.php -------------------------------------------------------------------------------- /src/Identicon/Identicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzalis/Identicon/HEAD/src/Identicon/Identicon.php --------------------------------------------------------------------------------