-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathcomposer.json
72 lines (72 loc) · 2.21 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
71
72
{
"name": "sonata-project/seo-bundle",
"type": "symfony-bundle",
"description": "Symfony SonataSeoBundle",
"keywords": [
"seo",
"sonata"
],
"homepage": "https://docs.sonata-project.org/projects/SonataSeoBundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@sonata-project.org",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataSeoBundle/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"sonata-project/block-bundle": "^4.0",
"sonata-project/exporter": "^2.0",
"symfony/config": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/form": "^4.4 || ^5.3",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/http-foundation": "^4.4 || ^5.3",
"symfony/http-kernel": "^4.4.13 || ^5.3",
"symfony/options-resolver": "^4.4 || ^5.3",
"twig/twig": "^2.9 || ^3.0"
},
"require-dev": {
"knplabs/knp-menu": "^3.0",
"knplabs/knp-menu-bundle": "^3.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.84",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-symfony": "^0.12.44",
"psalm/plugin-phpunit": "^0.15",
"symfony/console": "^4.4 || ^5.3",
"symfony/filesystem": "^4.4 || ^5.3",
"symfony/finder": "^4.4 || ^5.3",
"symfony/phpunit-bridge": "^5.3",
"symfony/yaml": "^4.4 || ^5.3",
"vimeo/psalm": "^4.7.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sonata\\SeoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\SeoBundle\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
]
}
}