phoenixrvd/oda

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "phoenixrvd/oda",
    "description": "API-Package for simplify access from Data-Block of an object, without implementing from getters and setters.",
    "type": "library",
    "require": {
        "php": ">=5.6"
    },
    "require-dev": {
        "ext-xdebug": "*",
        "phpunit/phpunit": "^4.8|^6.1",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "license": "MIT",
    "autoload": {
        "psr-4": {
            "PhoenixRVD\\ODA\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "PhoenixRVD\\ODA\\": "tests/"
        }
    },
    "authors": [
        {
            "name": "Viacheslav Wolf",
            "email": "phoenixrvd@yahoo.de"
        }
    ],
    "minimum-stability": "stable",
    "scripts": {
        "oda:test": [
            "@composer install",
            "@php vendor/bin/phpunit --configuration phpunit.xml"
        ],
        "oda:toc": [
            "doctoc README.md --notitle"
        ]
    }
}