stevegrunwell/smee

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "stevegrunwell/smee",
    "description": "Library for automatically copying git hooks into a project",
    "type": "library",
    "keywords": ["git", "git hooks", "githook"],
    "license": "MIT",
    "authors": [
        {
            "name": "Steve Grunwell",
            "homepage": "https://stevegrunwell.com"
        }
    ],
    "support": {
        "issues": "https://github.com/stevegrunwell/smee/issues",
        "source": "https://github.com/stevegrunwell/smee"
    },
    "require": {
        "symfony/console": "^3.3",
        "sebastian/diff": "^2.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.3",
        "mikey179/vfsStream": "^1.6",
        "squizlabs/php_codesniffer": "^3.0"
    },
    "autoload": {
        "psr-4": {
            "Smee\\": "src/"
        }
    },
    "archive": {
        "exclude": [
            "/tests",
            "phpcs.xml",
            "phpunit.xml"
        ]
    },
    "scripts": {
        "post-install-cmd": [
            "bin/smee install"
        ],
        "test-coverage": [
            "phpunit --coverage-html tests/coverage"
        ]
    },
    "bin": [
        "bin/smee"
    ]
}