PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Scott Arciszewski   Easydb Cache   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easydb Cache
Cache database query prepared statements
Author: By
Last change:
Date: 3 years ago
Size: 1,933 bytes
 

Contents

Class file image Download
{ "name": "paragonie/easydb-cache", "description": "Caching Adapter for EasyDB (caches Prepared Statements to reduce round trips)", "keywords": [ "database", "caching", "PDO", "sql", "security" ], "license": "MIT", "type": "library", "authors": [ { "name": "Scott Arciszewski", "email": "scott@paragonie.com", "homepage": "https://paragonie.com", "role": "Developer" }, { "name": "Woody Gilk", "homepage": "https://github.com/shadowhand", "role": "Contributor" }, { "name": "SignpostMarv", "homepage": "https://github.com/SignpostMarv", "role": "Contributor" } ], "support": { "issues": "https://github.com/paragonie/easydb-cache/issues", "email": "info@paragonie.com", "source": "https://github.com/paragonie/easydb-cache" }, "require": { "php": "^7.2|^8", "ext-pdo": "*", "paragonie/easydb": "^2.11", "paragonie/hidden-string": "^1", "paragonie/sodium_compat": "^1.13" }, "autoload": { "psr-4": { "ParagonIE\\EasyDB\\": "src" } }, "autoload-dev": { "psr-4": { "ParagonIE\\EasyDB\\Tests\\": "tests" } }, "require-dev": { "phpunit/phpunit": "^8|^9", "squizlabs/php_codesniffer": "^2.7", "vimeo/psalm": "^1|^3|^4" }, "scripts": { "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 1 src tests", "test": "phpunit && psalm" } }