artur-graniszewski/pdo-proxy

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name" : "pdo-proxy/pdo-proxy",
    "description": "PDO Proxy is a simple, event-driven PDO wrapper that allows to intercept and alter execution of all PDO methods. The PDOProxy\\PDO and PDOProxy\\PDOStatement classes extend the native PDO and PDOStatement classes, therefore they are compatible with any method expecting regular PDO objects.",
    "license" : "MIT",
    "type" : "library",
    "support" : {
        "email" : "artur.graniszewski@gmail.com"
    },
    "require": {
        "php": "^7.0"
    },
    "require-dev" : {
        "squizlabs/php_codesniffer": "^2.7",
        "phpunit/phpunit" : "~6.0",
        "ext-pdo_sqlite" : "*"
    },
    "authors" : [{
            "name" : "Artur Graniszewski",
            "email" : "artur.graniszewski@gmail.com",
            "role" : "Lead developer"
        }
    ],
    "autoload" : {
        "psr-4" : {
            "PDOProxy\\" : "src/"
        }
    },
    "autoload-dev" : {
        "psr-4" : {
            "PDOProxyTest\\" : "test/"
        }
    },
    "keywords" : [
        "PDO",
        "mock",
        "proxy", 
        "database"
    ]
}