Laragear/Clipboard

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/clipboard",
    "description": "Cut, copy and paste values inside your app.",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "authors": [
        {
            "name": "Italo Israel Baeza Cabrera",
            "email": "DarkGhostHunter@Gmail.com",
            "homepage": "https://github.com/sponsors/DarkGhostHunter"
        }
    ],
    "support": {
        "source": "https://github.com/Laragear/Clipboard",
        "issues": "https://github.com/Laragear/Clipboard/issues"
    },
    "require": {
        "php": "8.*",
        "illuminate/support": "9.*|10.*",
        "illuminate/events": "9.*|10.*"
    },
    "require-dev": {
        "orchestra/testbench": "^7.22|8.*"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\Clipboard\\": "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\\Clipboard\\ClipboardServiceProvider"
            ],
            "aliases": {
                "Clipboard": "Laragear\\Clipboard\\Facades\\Clipboard"
            }
        }
    },
    "funding": [
        {
            "type": "GitHub Sponsorship",
            "url": "https://github.com/sponsors/DarkGhostHunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}