{
    "name": "tastyigniter/ti-ext-broadcast",
    "type": "tastyigniter-package",
    "description": "Push browser notifications in real-time from your TastyIgniter application.",
    "license": "MIT",
    "authors": [
        {
            "name": "Sam Poyigi",
            "email": "sam@sampoyigi.com"
        }
    ],
    "keywords": [
        "tastyigniter",
        "broadcast",
        "notification"
    ],
    "require": {
        "ably/ably-php": "~1.0",
        "laravel/reverb": "^1.5",
        "pusher/pusher-php-server": "~7.0",
        "tastyigniter/core": "^4.0"
    },
    "require-dev": {
        "larastan/larastan": "^3.0",
        "laravel/pint": "^1.2",
        "pestphp/pest-plugin-laravel": "^3.0",
        "rector/rector": "^2.0",
        "sampoyigi/testbench": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "Igniter\\Broadcast\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Igniter\\Broadcast\\Tests\\": "tests/"
        }
    },
    "extra": {
        "tastyigniter-extension": {
            "code": "igniter.broadcast",
            "name": "Broadcast Events",
            "icon": {
                "class": "fa fa-bullhorn",
                "backgroundColor": "#FF4900",
                "color": "#fff"
            },
            "homepage": "https://tastyigniter.com/marketplace/item/igniter-broadcast"
        },
        "branch-alias": {
            "dev-master": "4.0.x-dev"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true,
            "php-http/discovery": true,
            "composer/installers": true
        },
        "sort-packages": true
    },
    "scripts": {
        "test:lint": "vendor/bin/pint --test --ansi",
        "test:lint-fix": "vendor/bin/pint --ansi",
        "test:refactor": "vendor/bin/rector process --dry-run --ansi",
        "test:refactor-fix": "vendor/bin/rector process --ansi",
        "test:static": "vendor/bin/phpstan analyse --memory-limit=1056M --ansi",
        "test:static-fix": "vendor/bin/phpstan --generate-baseline --memory-limit=1056M --ansi",
        "test:pest": "vendor/bin/pest",
        "test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
        "test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
        "test": [
            "@test:refactor",
            "@test:static",
            "@test:lint",
            "@test:coverage"
        ]
    }
}