This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
composer.json
116 lines (116 loc) · 4.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "sonata-project/news-bundle",
"description": "Symfony SonataNewsBundle",
"license": "MIT",
"type": "symfony-bundle",
"abandoned": true,
"keywords": [
"blog",
"sonata",
"news",
"post"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@sonata-project.org",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataNewsBundle/contributors"
}
],
"homepage": "https://docs.sonata-project.org/projects/SonataNewsBundle",
"require": {
"php": "^7.3 || ^8.0",
"doctrine/persistence": "^1.3 || ^2.0",
"sonata-project/classification-bundle": "^3.12",
"sonata-project/datagrid-bundle": "^2.3.1 || ^3.0",
"sonata-project/doctrine-extensions": "^1.10.1",
"sonata-project/form-extensions": "^0.1 || ^1.4",
"sonata-project/formatter-bundle": "^4.0",
"sonata-project/intl-bundle": "^2.4",
"sonata-project/media-bundle": "^3.20",
"sonata-project/twig-extensions": "^0.1 || ^1.3",
"symfony/config": "^4.4",
"symfony/console": "^4.4",
"symfony/dependency-injection": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/form": "^4.4",
"symfony/framework-bundle": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4",
"symfony/mailer": "^4.4 || ^5.1",
"symfony/mime": "^4.4.10 || ^5.1",
"symfony/options-resolver": "^4.4",
"symfony/routing": "^4.4",
"symfony/security-core": "^4.4.23",
"symfony/templating": "^4.4 || ^5.1",
"symfony/translation-contracts": "^1.1 || ^2.0",
"twig/string-extra": "^3.0",
"twig/twig": "^2.12.1"
},
"require-dev": {
"doctrine/mongodb-odm": "^2.0",
"doctrine/orm": "^2.4",
"friendsofsymfony/rest-bundle": "^2.3 || ^3.0",
"jms/serializer-bundle": "^3.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"nelmio/api-doc-bundle": "^2.13.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.99",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"sonata-project/admin-bundle": "^3.59",
"sonata-project/block-bundle": "^3.18",
"sonata-project/doctrine-mongodb-admin-bundle": "^3.10",
"sonata-project/doctrine-orm-admin-bundle": "^3.5",
"sonata-project/notification-bundle": "^3.4",
"sonata-project/seo-bundle": "^2.5",
"symfony/browser-kit": "^4.3",
"symfony/phpunit-bridge": "^5.3",
"symfony/swiftmailer-bundle": "^3.4",
"vimeo/psalm": "^4.10"
},
"conflict": {
"doctrine/dbal": "<2.6.0",
"doctrine/mongodb-odm": "<2.0",
"friendsofsymfony/rest-bundle": "<2.3",
"jms/serializer": "<0.13",
"sonata-project/admin-bundle": "<3.59",
"sonata-project/block-bundle": "<3.18",
"sonata-project/core-bundle": "<3.20",
"sonata-project/doctrine-orm-admin-bundle": "<3.5 || >=4.0",
"sonata-project/notification-bundle": "<3.4 || >=4.0",
"sonata-project/seo-bundle": "<2.5 || >=3.0"
},
"suggest": {
"nelmio/api-doc-bundle": "If you want to use the API.",
"sonata-project/block-bundle": "For rendering block lists.",
"sonata-project/doctrine-orm-admin-bundle": "For integrate Doctrine ORM into the SonataAdminBundle.",
"sonata-project/notification-bundle": "If you want to send comment notification asynchronously.",
"twig/extra-bundle": "Auto configures the Twig Intl extension."
},
"autoload": {
"psr-4": {
"Sonata\\NewsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\NewsBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}