Laragear/MetaTesting

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/meta-testing",
    "description": "A Laravel Package helper for Laravel Packages",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "keywords": [
        "laravel",
        "testing",
        "meta",
        "library",
        "package"
    ],
    "authors": [
        {
            "name": "Italo Israel Baeza Cabrera",
            "email": "DarkGhostHunter@Gmail.com",
            "homepage": "https://github.com/sponsors/DarkGhostHunter"
        }
    ],
    "support": {
        "source": "https://github.com/Laragear/MetaTesting",
        "issues": "https://github.com/Laragear/MetaTesting/issues"
    },
    "require": {
        "php": "8.*"
    },
    "require-dev": {
        "orchestra/testbench": "^7.22|8.*"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\MetaTesting\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "funding": [
        {
            "type": "Github Sponsorship",
            "url": "https://github.com/sponsors/DarkGhostHunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}