{
    "name": "fof/sitemap",
    "description": "Generate a sitemap",
    "keywords": [
        "extension",
        "flarum",
        "flagrow",
        "sitemap"
    ],
    "type": "flarum-extension",
    "license": "MIT",
    "authors": [
        {
            "name": "Clark Winkelmann",
            "email": "clark.winkelmann@gmail.com",
            "homepage": "https://clarkwinkelmann.com/"
        },
        {
            "name": "Daniël Klabbers",
            "email": "daniel@klabbers.email",
            "homepage": "http://luceos.com"
        }
    ],
    "support": {
        "issues": "https://github.com/FriendsOfFlarum/sitemap/issues",
        "source": "https://github.com/FriendsOfFlarum/sitemap",
        "forum": "https://discuss.flarum.org/d/14941"
    },
    "homepage": "https://friendsofflarum.org",
    "funding": [
        {
            "type": "website",
            "url": "https://opencollective.com/fof/donate"
        }
    ],
    "require": {
        "php": "^8.0",
        "flarum/core": "^1.3.1",
        "guzzlehttp/guzzle": "*"
    },
    "extra": {
        "flarum-extension": {
            "title": "FoF Sitemap",
            "category": "feature",
            "icon": {
                "name": "fas fa-sitemap",
                "backgroundColor": "#e74c3c",
                "color": "#fff"
            },
            "optional-dependencies": [
                "flarum/tags",
                "fof/pages",
                "v17development/flarum-seo"
            ]
        },
        "flagrow": {
            "discuss": "https://discuss.flarum.org/d/14941"
        },
        "flarum-cli": {
            "modules": {
                "githubActions": true,
                "backendTesting": true
            }
        }
    },
    "replace": {
        "flagrow/sitemap": "*"
    },
    "suggest": {
        "fof/pages": "List pages in the sitemap",
        "flarum/tags": "List tags in the sitemap"
    },
    "autoload": {
        "psr-4": {
            "FoF\\Sitemap\\": "src/"
        }
    },
    "require-dev": {
        "flarum/tags": "*",
        "fof/pages": "*",
        "flarum/phpstan": "*",
        "flarum/testing": "^1.0.0"
    },
    "scripts": {
        "analyse:phpstan": "phpstan analyse",
        "clear-cache:phpstan": "phpstan clear-result-cache",
        "test": [
            "@test:unit",
            "@test:integration"
        ],
        "test:unit": "phpunit -c tests/phpunit.unit.xml",
        "test:integration": "phpunit -c tests/phpunit.integration.xml",
        "test:setup": "@php tests/integration/setup.php"
    },
    "scripts-descriptions": {
        "analyse:phpstan": "Run static analysis",
        "test": "Runs all tests.",
        "test:unit": "Runs all unit tests.",
        "test:integration": "Runs all integration tests.",
        "test:setup": "Sets up a database for use with integration tests. Execute this only once."
    },
    "autoload-dev": {
        "psr-4": {
            "FoF\\Sitemap\\Tests\\": "tests/"
        }
    }
}
