{
    "name": "code-lts/laravel-fcm",
    "description": "Laravel / Lumen package for Firebase Cloud Messaging",
    "keywords": ["laravel", "lumen", "firebase", "notification", "push", "fcm", "firebase cloud messaging"],
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Nicolas Brosy",
            "email": "nicolas.brosy@gmail.com"
        },
        {
            "name": "William Desportes",
            "email": "williamdes@wdes.fr"
        }
    ],
    "funding": [
        {
            "type": "github",
            "url": "https://github.com/sponsors/williamdes"
        }
    ],
    "support": {
        "email": "williamdes@wdes.fr",
        "issues": "https://github.com/code-lts/Laravel-FCM/issues",
        "source": "https://github.com/code-lts/Laravel-FCM"
    },
    "require": {
        "php": "^7.1.3 || ^8.0",
        "illuminate/support": "^5.6 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
        "guzzlehttp/guzzle": "^6 || ^7",
        "monolog/monolog": "^1.12||^2.0||^3.2"
    },
    "require-dev": {
        "phpunit/phpunit" : "^7 || ^8 || ^9 || ^10 || ^11",
        "laravel/laravel": "^5.6 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
        "phpstan/phpstan": "^1",
        "wdes/coding-standard": "^3.2"
    },
    "autoload": {
        "psr-4": {
            "LaravelFCM\\": "src/",
            "LaravelFCM\\Mocks\\": "tests/mocks"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "LaravelFCM\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "phpunit": "@php phpunit",
        "phpstan": "@php phpstan",
        "phpcs": "@php phpcs",
        "phpcbf": "@php phpcbf",
        "test": [
            "@phpunit"
        ]
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "laravel": {
            "providers": [
                "LaravelFCM\\FCMServiceProvider"
            ],
            "aliases": {
                "FCM": "LaravelFCM\\Facades\\FCM",
                "FCMGroup": "LaravelFCM\\Facades\\FCMGroup"
            }
        }
    },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    },
    "archive": {
        "exclude": [
            "/tests",
            "/phpunit.xml"
        ]
    }
}
