-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·105 lines (105 loc) · 3.7 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
{
"name": "drenso/symfony-shared",
"description": "This bundle contains commonly shared extensions between our projects.",
"keywords": [
"symfony",
"shared",
"drenso"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Bob van de Vijver",
"email": "[email protected]"
},
{
"name": "Tobias Feijten",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-random": "*",
"psr/clock": "~1.0",
"symfony/config": " ~6.4 || ~7.0",
"symfony/dependency-injection": "~6.4 || ~7.0",
"symfony/form": "~6.4 || ~7.0",
"symfony/http-kernel": "~6.4 || ~7.0",
"twig/twig": "~3.7"
},
"require-dev": {
"doctrine/orm": "^2.7",
"eluceo/ical": "^2.7",
"friendsofphp/php-cs-fixer": "3.65.0",
"jms/serializer-bundle": "^5.0",
"maennchen/zipstream-php": "^3.0",
"php-decimal/php-decimal": "^1.1",
"phpoffice/phpspreadsheet": "^1.23 || ^2.0 || ^3.0",
"phpstan/phpstan": "1.12.11",
"rector/rector": "1.2.10",
"sebastian/comparator": "^5.0 || ^6.0",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/console": "~6.4 || ~7.0",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/doctrine-bridge": "~6.4 || ~7.0",
"symfony/framework-bundle": "~6.4 || ~7.0",
"symfony/http-client": "~6.4 || ~7.0",
"symfony/lock": "~6.4 || ~7.0",
"symfony/mailer": "~6.4 || ~7.0",
"symfony/routing": "~6.4 || ~7.0",
"symfony/security-core": "~6.4 || ~7.0",
"symfony/security-http": "~6.4 || ~7.0",
"symfony/translation-contracts": "~1.1 || ~2.0 || ~3.0",
"symfony/twig-bridge": "~6.4 || ~7.0",
"symfony/validator": "~6.4 || ~7.0"
},
"conflict": {
"gedmo/doctrine-extensions": "<3.5.0",
"jms/serializer": "<3.14.0",
"maennchen/zipstream-php": "<3"
},
"suggest": {
"doctrine/orm": "Needed to use the Database traits",
"eluceo/ical": "Needed for the IcalBuilder",
"jms/serializer-bundle": "Needed to use the Database traits and the Decimal serialization handler",
"maennchen/zipstream-php": "Needed to use the zipped spreadsheet responses",
"php-decimal/php-decimal": "Needed to use the Decimal serialization handler and the form transformer",
"phpoffice/phpspreadsheet": "Needed to use the SpreadsheetHelper",
"stof/doctrine-extensions-bundle": "Needed to use the Blameable trait",
"symfony/console": "Needed to use the action security command",
"symfony/doctrine-bridge": "Needed to use the HiddenEntityType, the Database traits and the action security command",
"symfony/framework-bundle": "Needed to use the Sentry tunnel",
"symfony/http-client": "Needed to use the Sentry tunnel",
"symfony/lock": "Needed to use the UseLock attribute",
"symfony/mailer": "Needed to use the MailService",
"symfony/security-core": "Needed to use the Blameable subscriber",
"symfony/translation": "Needed to use the SpreadsheetHelper",
"symfony/twig-bundle": "Needed to use the MailService",
"symfony/validator": "Use EntityValidationFailedException for nice exception messages when validation failed",
"twig/extra-bundle": "Needed to use the MailService when inlining CSS styles",
"twig/cssinliner-extra": "Needed to use the MailService when inlining CSS styles"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Drenso\\Shared\\": "src/",
"Drenso\\Shared\\Tests\\": "phpunit/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v2.x-dev"
}
}
}