forked from umanit/seo-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.25 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.25 KB
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": "contact@umanit.fr"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"spatie/schema-org": "^2.1",
"ramsey/uuid": "^3.9|^4.1",
"symfony/flex": "^1.9",
"symfony/twig-bundle": "^4.4|^5.1|^5.2",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"symfony/form": "^4.4|^5.1|^5.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.1|^5.2",
"phpunit/phpunit": "^7.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Umanit\\SeoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/Fixtures/src/",
"Umanit\\SeoBundle\\Tests\\": "tests/"
}
}
}