-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·132 lines (132 loc) · 3.98 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"type": "project",
"license": "MIT",
"description": "sistema de reservas",
"name": "germdz/payunpile",
"authors": [
{
"name": "Gerardo J. Montivero gerMdz",
"email": "gerardo.montivero@gmail.com"
},
{
"name": "Ascendig",
"homepage": "https://ascendig.ar"
}
],
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"antishov/doctrine-extensions-bundle": "^1.4",
"composer/package-versions-deprecated": "1.11.99.4",
"doctrine/annotations": "^1.0",
"doctrine/common": "^3.0.0",
"doctrine/doctrine-bundle": "^2.3.2",
"doctrine/doctrine-migrations-bundle": "^2",
"doctrine/event-manager": "^v1.0.0",
"doctrine/orm": "^v2.7.5",
"doctrine/persistence": "^2.2.0",
"endroid/qr-code": "^3.0",
"endroid/qr-code-bundle": "^3.0.0",
"gedmo/doctrine-extensions": "^v3.2.0",
"hashids/hashids": "^4.1",
"knplabs/knp-paginator-bundle": "^5.8",
"knplabs/knp-snappy-bundle": "^v1.9.0",
"knplabs/knp-time-bundle": "^1.11",
"laminas/laminas-code": "^3.4",
"laminas/laminas-eventmanager": "^3.2",
"liip/imagine-bundle": "^2.3",
"oneup/flysystem-bundle": "^3.4",
"phpdocumentor/reflection-docblock": "^5.2",
"phpoffice/phpspreadsheet": "^1.15",
"phpunit/phpunit": "^9.5",
"ramsey/uuid-doctrine": "^1.6",
"sensio/framework-extra-bundle": "^5.5",
"symfony/apache-pack": "^1.0",
"symfony/asset": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.3.1",
"symfony/form": "5.4.*",
"symfony/framework-bundle": "5.4.*",
"symfony/intl": "5.4.*",
"symfony/mailer": "5.4.*",
"symfony/messenger": "5.4.*",
"symfony/polyfill-php72": "^1.15",
"symfony/property-access": "5.4.*",
"symfony/property-info": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/validator": "5.4.*",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "5.4.*",
"twig/cssinliner-extra": "^3.1",
"twig/extensions": "^1.5",
"twig/extra-bundle": "^3.1",
"twig/intl-extra": "^3.1",
"twig/string-extra": "^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"sensiolabs/security-checker": "^6.0",
"symfony/debug-bundle": "*",
"symfony/maker-bundle": "^1.30",
"symfony/monolog-bundle": "^3.0",
"symfony/phpunit-bridge": "^5.4",
"symfony/stopwatch": "^5.4",
"symfony/var-dumper": "*",
"symfony/web-profiler-bundle": "^5.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
},
"public-dir": "public"
}
}