Novemb3r/nginx-uid-decoder

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "novemb3r/nginx-uid-decoder",
    "description": "A simple library to decode/encode uid from ngx_http_userid_module",
    "keywords": ["nginx", "uid", "decode", "ngx_http_userid_module", "cookie", "uid_got", "uid_set"],
    "license": "MIT",
    "authors": [
        {
            "name": "November",
            "email": "igkutyrev@gmail.com"
        }
    ],
    "require": {
        "php": ">=7.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.4"
    },
    "autoload": {
        "psr-4": {
            "NginxUidDecoder\\": "lib/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "NginxUidDecoder\\": "tests/unit/"
        }
    },
    "scripts": {
        "test": "phpunit -c tests/phpunit.xml"
    }
}