-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.23 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
{
"name": "umanit/seo-bundle",
"description": "Provides SEO features on Doctrine entities.",
"type": "symfony-bundle",
"keywords": [
"symfony",
"doctrine",
"SEO"
],
"homepage": "https://github.com/umanit/seo-bundle",
"license": "MIT",
"authors": [
{
"name": "UmanIT",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"spatie/schema-org": "^3.2",
"ramsey/uuid": "^4.1",
"symfony/twig-bundle": "^6.4|^7.0",
"twig/extra-bundle": "^3.0",
"twig/twig": "^3.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7|^3.0",
"symfony/form": "^6.4|^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.1|^5.2",
"phpunit/phpunit": "^7.5|^9.5",
"rector/rector": "^1.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Umanit\\SeoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/Fixtures/src/",
"Umanit\\SeoBundle\\Tests\\": "tests/"
}
}
}