Laragear/Preload

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "laragear/preload",
    "description": "Effortlessly make a Preload script for your Laravel application.",
    "type": "library",
    "license": "MIT",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "keywords": [
        "laravel",
        "preloader",
        "preload",
        "php",
        "laragear",
        "opcache"
    ],
    "authors": [
        {
            "name": "Italo Israel Baeza Cabrera",
            "email": "darkghosthunter@gmail.com",
            "homepage": "https://github.com/sponsors/DarkGhostHunter"
        }
    ],
    "require": {
        "php": "8.*",
        "ext-json": "*",
        "symfony/finder": "6.*",
        "illuminate/config": "9.*|10.*",
        "illuminate/console": "9.*|10.*",
        "illuminate/contracts": "9.*|10.*",
        "illuminate/events": "9.*|10.*",
        "illuminate/http": "9.*|10.*",
        "illuminate/pipeline": "9.*|10.*",
        "illuminate/queue": "9.*|10.*",
        "illuminate/support": "9.*|10.*"
    },
    "require-dev": {
        "orchestra/testbench": "^7.22|8.*",
        "jetbrains/phpstorm-attributes": "*"
    },
    "autoload": {
        "psr-4": {
            "Laragear\\Preload\\": "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\\Preload\\PreloadServiceProvider"
            ],
            "aliases": {
                "Preload": "Laragear\\Preload\\Facades\\Preload"
            }
        }
    },
    "funding": [
        {
            "type": "Github Sponsorship",
            "url": "https://github.com/sponsors/DarkGhostHunter"
        },
        {
            "type": "Paypal",
            "url": "https://paypal.me/darkghosthunter"
        }
    ]
}