PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Stefano Azzolini   PHP Murmurhash   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Murmurhash
Generate hash values of a string using Murmurhash
Author: By
Last change:
Date: 2 years ago
Size: 1,100 bytes
 

Contents

Class file image Download
{ "name": "lastguest/murmurhash", "type": "library", "description": "MurmurHash3 Hash", "homepage": "https://github.com/lastguest/murmurhash-php", "keywords": [ "hash", "hashing", "murmur" ], "license": "MIT", "authors": [ { "name": "Stefano Azzolini", "email": "lastguest@gmail.com", "homepage": "https://github.com/lastguest/murmurhash-php" } ], "scripts": { "test" : [ "vendor/bin/phpstan analyse --ansi -n -c tests/phpstan.neon -l 5 src", "vendor/bin/phpunit --colors=always -c tests/phpunit.xml tests/cases" ] }, "config": { "optimize-autoloader": true, "classmap-authoritative": true }, "require": { "php": "^7||^8.0" }, "require-dev": { "phpunit/phpunit": "^7||^9", "phpstan/phpstan": "^0.12" }, "minimum-stability": "stable", "autoload": { "psr-4": { "lastguest\\": "src/lastguest/" } } }