{
    "name": "spatie/laravel-failed-job-monitor",
    "description": "Get notified when a queued job fails",
    "keywords": [
        "spatie",
        "queue",
        "job",
        "monitor",
        "notify",
        "slack",
        "laravel-failed-job-monitor"
    ],
    "homepage": "https://github.com/spatie/laravel-failed-job-monitor",
    "license": "MIT",
    "authors": [
        {
            "name": "Freek Van der Herten",
            "email": "freek@spatie.be",
            "homepage": "https://spatie.be",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^8.0",
        "laravel/framework": "^7.0|^8.0|^9.0|^10.0|^11.0",
        "spatie/laravel-package-tools": "^1.6"
    },
    "require-dev": {
        "mockery/mockery": "^1.4",
        "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0",
        "pestphp/pest": "^1.22|^2.34"
    },
    "autoload": {
        "psr-4": {
            "Spatie\\FailedJobMonitor\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Spatie\\FailedJobMonitor\\Test\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/pest"
    },
    "suggest": {
        "guzzlehttp/guzzle": "Allows notifications to be sent to Slack",
        "laravel/slack-notification-channel": "Required for sending notifications via Slack"
    },
    "extra": {
        "laravel": {
            "providers": [
                "Spatie\\FailedJobMonitor\\FailedJobMonitorServiceProvider"
            ]
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    }
}
