Laragear/TokenAction

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/token-action",
    "description": "Use tokens to accept or reject actions a limited number of times.",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "dev",
    "prefer-stable": true,
    "keywords": [
        "laravel",
        "token",
        "tokens"
    ],
    "homepage": "https://github.com/laragear/token-action",
    "authors": [
        {
            "name": "Italo Israel Baeza Cabrera",
            "email": "darkghosthunter@gmail.com",
            "homepage": "https://github.com/sponsors/DarkGhostHunter"
        }
    ],
    "support": {
        "source": "https://github.com/Laragear/TokenAction",
        "issues": "https://github.com/Laragear/TokenAction/issues"
    },
    "require": {
        "php": "^8.1",
        "ext-json": "*",
        "laragear/meta": "^3.1",
        "illuminate/config": "10.*|11.*",
        "illuminate/support": "10.*|11.*",
        "illuminate/queue": "10.*|11.*",
        "illuminate/database": "10.*|11.*",
        "illuminate/filesystem": "10.*|11.*"
    },
    "require-dev": {
        "laragear/meta-testing": "2.*",
        "orchestra/testbench": "8.*|9.*"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\TokenAction\\": "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\\TokenAction\\TokenActionServiceProvider"
            ],
            "aliases": {
                "Token": "Laragear\\TokenAction\\Facades\\Token"
            }
        }
    },
    "funding": [
        {
            "type": "Github Sponsorship",
            "url": "https://github.com/sponsors/DarkGhostHunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}