morris/lessql

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "morris/lessql",
    "description": "LessQL: A lightweight and performant PHP ORM alternative",
    "keywords": ["orm", "notorm", "sql", "pdo", "database"],
    "license": "MIT",
    "homepage": "https://github.com/morris/lessql",
    "authors": [
        {
            "name": "Morris Brodersen",
            "homepage": "https://morrisbrodersen.de"
        }
    ],
    "autoload": {
        "psr-4": {
            "LessQL\\": "src/LessQL"
        }
    },
    "require": {
        "php": ">=5.3.4"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.6|~5|~6|~7",
        "friendsofphp/php-cs-fixer": "^2.16"
    },
    "scripts": {
        "test": "vendor/bin/phpunit --bootstrap=tests/sqlite.php --coverage-html=coverage tests",
        "format": "vendor/bin/php-cs-fixer fix ."
    }
}