PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marco Cesarato   PHP PDO Cache Query   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP PDO Cache Query
Retrieve PDO query results from cache variables
Author: By
Last change: Update of composer.json
Date: 3 years ago
Size: 1,058 bytes
 

Contents

Class file image Download
{ "name": "marcocesarato/cpdo", "description": "This package can retrieve PDO query results from cache variables. It extends the base PDO class and override some functions to handle database query execution and store the query results in variables. The class can also return query results for cached queries for previously executed queries to retrieve the results faster for repeated queries.", "type": "library", "license": "GPL-3.0-or-later", "authors": [ { "name": "Marco Cesarato", "email": "cesarato.developer@gmail.com" } ], "autoload": { "psr-4": { "marcocesarato\\cpdo\\": "src" } }, "minimum-stability": "stable", "scripts": { "fix-cs": "vendor/bin/php-cs-fixer fix --config=.php_cs", "check-cs": "vendor/bin/php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php_cs" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.15", "predis/predis": "^1.1" }, "require": { "php": ">=5.1.2", "ext-pdo": "*", "ext-json": "*" } }