heiglandreas/UTCDateTime

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name" : "utcdatetime/utcdatetime",
    "type" : "library",
    "description": "Provides a datetime-implementation that is always UTC",
    "keywords": ["DateTime","UTC", "GMT"],
    "homepage": "http://github.com/heiglandreas/UTCDateTime",
    "license": "MIT",
    "authors": [{
        "name": "Andreas Heigl",
        "email": "andreas@heigl.org",
        "homepage": "https://andreas.heigl.org",
        "role": "Developer"
    }],
    "require" : {
        "php" : "^7.0"
    },
    "require-dev" : {
        "mockery/mockery": "^1.2.0",
        "phpunit/phpunit" : "^8.1",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "minimum-stability" : "dev",
    "prefer-stable" : true,
    "autoload": {
        "psr-4": {
            "UTCDateTime\\": "src/UTCDateTime"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "UTCDateTimeTest\\": "tests/UTCDateTimeTest"
        }
    }
}