65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "spatie/laravel-sitemap",
|
|
"description": "Create and generate sitemaps with ease",
|
|
"keywords": [
|
|
"spatie",
|
|
"laravel-sitemap"
|
|
],
|
|
"homepage": "https://github.com/spatie/laravel-sitemap",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Freek Van der Herten",
|
|
"email": "freek@spatie.be",
|
|
"homepage": "https://spatie.be",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.0",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"illuminate/support": "^8.0|^9.0|^10.0",
|
|
"nesbot/carbon": "^2.63",
|
|
"spatie/crawler": "^7.0",
|
|
"spatie/laravel-package-tools": "^1.5",
|
|
"symfony/dom-crawler": "^5.1.14|^6.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^1.4",
|
|
"orchestra/testbench": "^6.23|^7.0|^8.0",
|
|
"pestphp/pest": "^1.22",
|
|
"phpunit/phpunit": "^9.5",
|
|
"spatie/pest-plugin-snapshots": "^1.1",
|
|
"spatie/phpunit-snapshot-assertions": "^4.0",
|
|
"spatie/temporary-directory": "^2.0"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Spatie\\Sitemap\\SitemapServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Spatie\\Sitemap\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Spatie\\Sitemap\\Test\\": "tests"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"test": "vendor/bin/pest"
|
|
}
|
|
}
|