forked from compagnie-hyperactive/SeoBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 987 Bytes
/
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
{
"name": "lch/seo-bundle",
"type": "symfony-bundle",
"description": "Provides minimal SEO items on front-page-having entities : slug, title, description",
"keywords": ["SEO", "management", "symfony"],
"homepage": "https://github.com/compagnie-hyperactive/SeoBundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas BONNIOT",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^4.2",
"symfony/twig-bundle": "^4.2",
"twig/extensions": "1.5.*",
"symfony/form": "^4.2",
"symfony/orm-pack": "^1.0",
"symfony/validator": "^4.2",
"knplabs/doctrine-behaviors": "^2.0",
"doctrine/annotations": "^1.8"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.3",
"phpunit/phpunit": "~4.8|~5.0"
},
"autoload": {
"psr-4": {
"Lch\\SeoBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
}
}
}