-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.43 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
{
"name": "spirytone/sitemap-bundle",
"type": "symfony-bundle",
"description": "Symfony Sitemap Generating Bundle",
"keywords": ["sitemap", "google", "seo"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Pawel Wilk",
"email": "pawel@wilk.pro",
"homepage": "https://wilk.pro"
}
],
"autoload": {
"psr-4": {
"SpirytOne\\SitemapBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpirytOne\\SitemapBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-xmlwriter": "*",
"symfony/http-kernel": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/console": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0"
},
"require-dev": {
"vimeo/psalm": "^5.18",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-phpunit": "^1.3",
"symfony/routing": "^7.0",
"symfony/finder": "^7.0",
"symfony/http-foundation": "^7.0"
},
"suggest": {
"symfony/routing": "Required by controllers",
"symfony/finder": "Required by controllers",
"symfony/http-foundation": "Required by controllers"
}
}