garethellis36/hamcrest-matchers

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "garethellis/hamcrest-matchers",
    "type": "library",
    "license": "MIT",
    "description": "A set of custom Hamcrest matchers",
    "authors": [
        {
            "name": "Gareth Ellis",
            "email": "garethellis@gmail.com",
            "role": "Developer"
        }
    ],
    "require": {
        "hamcrest/hamcrest-php": "^2.0",
        "php": "7.3.* || 7.4.* || 8.0.* || 8.1.*",
        "ascii-soup/hamcrest-callback-matcher": "^1.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "fakerphp/faker": "^1.13"
    },
    "autoload": {
        "files": ["src/functions.php"],
        "psr-4": {
            "Garethellis\\HamcrestMatchers\\": "src/"
        }
    },
    "autoload-dev": {
        "files": ["src/functions.php"],
        "psr-4": {
            "Garethellis\\HamcrestMatchers\\Test\\": "test/"
        }
    }
}