forked from spatie/laravel-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.93 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mfonte/laravel-sitemap",
"description": "Laravel Sitemap Generator. Supports SitemapIndex, Images Sitemap and News Sitemap.",
"keywords": [
"laravel-sitemap",
"google image sitemap",
"google news sitemap",
"google sitemap index"
],
"homepage": "https://github.com/mauriziofonte/laravel-sitemap",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
},
{
"name": "Maurizio Fonte",
"email": "maurizio@mauriziofonte.it",
"homepage": "https://www.mauriziofonte.it",
"role": "Developer"
}
],
"require": {
"ext-openssl": ">1.0.2",
"illuminate/support": "^9.0 || ^10.0",
"illuminate/contracts": "^9.0 || ^10.0",
"nesbot/carbon": "^2.0",
"spatie/laravel-package-tools": "^1.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.9",
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5",
"spatie/phpunit-snapshot-assertions": "^4.2",
"spatie/temporary-directory": "^2.1"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Mfonte\\Sitemap\\SitemapServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Mfonte\\Sitemap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mfonte\\Sitemap\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"fix": "@php vendor/bin/php-cs-fixer fix",
"analyse": "@php vendor/bin/phpstan analyse src --level 4"
}
}