This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
70 lines (70 loc) · 2.48 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
70
{
"name": "symfony-cmf/seo-bundle",
"type": "symfony-bundle",
"description": "Symfony CMF Search Engine Optimization Bundle",
"keywords": [
"Symfony CMF",
"SEO"
],
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/SeoBundle/contributors"
}
],
"require": {
"php": "^7.2",
"symfony/framework-bundle": "^3.4 || ^4.0",
"sonata-project/seo-bundle": "^2.2",
"doctrine/collections": "^1.0"
},
"require-dev": {
"doctrine/phpcr-odm": "^1.4.2 || ^2.0",
"doctrine/orm": "^2.4",
"symfony-cmf/core-bundle": "^2.1",
"symfony-cmf/routing-bundle": "^1.4.0 || ^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
"matthiasnoback/symfony-config-test": "^2.1",
"symfony/phpunit-bridge": "^3.4 || ^4.0",
"burgov/key-value-form-bundle": "^1.0",
"symfony-cmf/testing": "^2.1.9",
"symfony/security-bundle": "^3.4 || ^4.0",
"symfony/translation": "^3.4 || ^4.0",
"symfony/validator": "^3.4 || ^4.0",
"symfony/asset": "^3.4 || ^4.0",
"symfony/templating": "^3.4 || ^4.0",
"symfony/browser-kit": "^3.4 || ^4.0",
"symfony/css-selector": "^3.4 || ^4.0"
},
"suggest": {
"symfony-cmf/core-bundle": "When using the provided PHPCR-ODM document",
"symfony-cmf/routing-bundle": "To make use of the alternate locale provider.",
"doctrine/phpcr-bundle": "To persist the metadata in PHPCR ODM documents",
"doctrine/doctrine-bundle": "To persist the metadata in ORM entities",
"doctrine/orm": "To persist the metadata in ORM entities, ~2.4",
"burgov/key-value-form-bundle": "To have advanced editing options in the SEO form type, ^1.0",
"symfony-cmf/sonata-admin-integration-bundle": "To provide an admin interface for the PHPCR ODM documents."
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\SeoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\SeoBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"conflict": {
"phpcr/phpcr-utils": "<1.3.0",
"sebastian/exporter": "<2.0.0",
"burgov/key-value-form-bundle": "<1.3.1"
}
}