PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   PHP Convert Base36   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Convert Base36
Encode and decode data using Base36 encoding
Author: By
Last change:
Date: 5 years ago
Size: 1,149 bytes
 

Contents

Class file image Download
{ "name": "odan/base36", "type": "library", "description": "Base36 string encode and decode", "keywords": [ "base36", "encode", "decode", "encoding", "encoder" ], "homepage": "https://github.com/odan/base36", "license": "MIT", "authors": [ { "name": "odan", "email": "odan@users.noreply.github.com", "homepage": "https://github.com/odan/session", "role": "Developer" } ], "require": { "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" }, "scripts": { "test": "phpunit", "test-coverage": "phpunit --coverage-clover build/logs/clover.xml --coverage-html build/coverage", "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests", "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit -n --no-patch 1 src tests" }, "autoload": { "psr-4": { "Odan\\": "src" } }, "autoload-dev": { "psr-4": { "Odan\\Test\\": "tests" } }, "config": { "sort-packages": true } }