kura-lab/base64url

Base64url Encoding/Decoding Library

1.0.0 2016-12-25 14:57 UTC

This package is not auto-updated.

Last update: 2024-04-27 23:52:40 UTC


README

Base64url Encoding/Decoding

Packagist license

Requirements

Minimum PHP Version

  • PHP 5.3.3 or higher.

Install

At first, install composer.

$ mkdir workspace
$ cd workspace
$ curl -s http://getcomposer.org/installer | php

Create composer.json.

{
    "require": {
        "kura-lab/base64url": "1.*"
    }
}

Install jose library.

$ php composer.phar install

Development

Check coding style with CodeSniffer.

$ vendor/bin/phpcs --standard=PSR2 src/

Execute unit test with PHPUnit.

$ vendor/bin/phpunit

Fix source code with PHP Coding Standards Fixer.

$ vendor/bin/php-cs-fixer fix --config-file .php_cs --verbose --diff --dry-run
$ vendor/bin/php-cs-fixer fix --config-file .php_cs --verbose --diff