PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Scott Arciszewski   PASERK PHP   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PASERK PHP
Extend PASETO to wrap and serialize keys
Author: By
Last change:
Date: 1 year ago
Size: 891 bytes
 

Contents

Class file image Download
{ "name": "paragonie/paserk", "description": "PHP implementation of PASERK (Platform Agnostic SERialized Keys), a PASETO extension.", "license": "ISC", "type": "library", "authors": [ { "name": "Paragon Initiative Enterprises", "email": "security@paragonie.com" } ], "autoload": { "psr-4": { "ParagonIE\\Paserk\\": "src/" } }, "autoload-dev": { "psr-4": { "ParagonIE\\Paserk\\Tests\\": "tests/" } }, "require": { "php": "^8.1", "ext-gmp": "*", "ext-json": "*", "ext-openssl": "*", "paragonie/easy-ecc": "^1", "paragonie/hidden-string": "^1|^2", "paragonie/paseto": "^3" }, "require-dev": { "phpunit/phpunit": "^9", "vimeo/psalm": "^4" }, "scripts": { "full-test": [ "@static-analysis", "@test" ], "static-analysis": "psalm", "test": "phpunit" } }