Laragear/Refine

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/refine",
    "description": "Filter a database query using the request query keys and matching methods.",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "dev",
    "prefer-stable": true,
    "authors": [
        {
            "name": "Italo Baeza C.",
            "email": "DarkGhostHunter@Gmail.com",
            "homepage": "https://github.com/sponsors/DarkGhostHunter"
        }
    ],
    "support": {
        "source": "https://github.com/laragear/refine",
        "issues": "https://github.com/laragear/refine/issues"
    },
    "require": {
        "php": "^8.1",
        "illuminate/http": "10.*|11.*",
        "illuminate/database": "10.*|11.*",
        "illuminate/console": "10.*|11.*"
    },
    "require-dev": {
        "laragear/meta-testing": "2.*",
        "orchestra/testbench": "8.*|9.*"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\Refine\\": "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
    },
    "extra": {
        "laravel": {
            "providers": [
                "Laragear\\Refine\\RefineServiceProvider"
            ]
        }
    },
    "funding": [
        {
            "type": "Github Sponsorship",
            "url": "https://github.com/sponsors/DarkGhostHunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}