kura-lab/cose-php

Json Web Token (JWT) Library

1.1.2 2017-01-22 10:52 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:45:23 UTC


README

Constrained Object Signing and Encryption for PHP

Packagist license

Specification

Requirements

Minimum PHP Version

  • PHP 5.4.0 or higher.

Installation

At first, install composer.

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

Create composer.json.

{
    "minimum-stability": "dev",
    "require": {
        "kura-lab/cose-php": "1.*"
    }
}

Install cose 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