-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
144 lines (144 loc) · 4.65 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
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "aulasoftwarelibre/idea",
"description": "Gestor de actividades",
"type": "project",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"stof/doctrine-extensions-bundle": "^1.7",
"composer/package-versions-deprecated": "^1.11.99.4",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.8",
"easycorp/easyadmin-bundle": "^4.0",
"exercise/htmlpurifier-bundle": "^4.1",
"friendsofsymfony/ckeditor-bundle": "^2.3",
"friendsofsymfony/jsrouting-bundle": "^3.0",
"friendsofsymfony/rest-bundle": "^3.0",
"aulasoftwarelibre/oauth2-uco-bundle": "^0.2",
"knplabs/knp-menu-bundle": "^3.1",
"knplabs/knp-time-bundle": "^1.15",
"league/oauth2-github": "^2.0|^3.0",
"league/oauth2-google": "^3.0|^4.0",
"leogout/seo-bundle": "dev-master",
"liip/imagine-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpoffice/phpspreadsheet": "^1.4",
"sensio/framework-extra-bundle": "^6.1",
"spatie/calendar-links": "^1.2",
"symfony/asset": "6.1.*",
"symfony/console": "6.1.*",
"symfony/doctrine-bridge": "6.1.*",
"symfony/dotenv": "6.1.*",
"symfony/expression-language": "6.1.*",
"symfony/flex": "^2.0.0",
"symfony/form": "6.1.*",
"symfony/framework-bundle": "6.1.*",
"symfony/http-client": "6.1.*",
"symfony/intl": "6.1.*",
"symfony/mailer": "6.1.*",
"symfony/messenger": "*",
"symfony/mime": "6.1.*",
"symfony/monolog-bundle": "^3.6",
"symfony/notifier": "6.1.*",
"symfony/process": "6.1.*",
"symfony/property-access": "6.1.*",
"symfony/property-info": "6.1.*",
"symfony/security-bundle": "6.1.*",
"symfony/serializer": "6.1.*",
"symfony/string": "6.1.*",
"symfony/templating": "6.1.*",
"symfony/translation": "6.1.*",
"symfony/twig-bundle": "6.1.*",
"symfony/validator": "6.1.*",
"symfony/web-link": "6.1.*",
"symfony/webpack-encore-bundle": "^1.5",
"symfony/yaml": "6.1.*",
"twig/cssinliner-extra": "^2.12|^3.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/inky-extra": "^2.12|^3.0",
"twig/intl-extra": "^2.12|^3.0",
"vich/uploader-bundle": "^1.8",
"wohali/oauth2-discord-new": "^1.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"doctrine/coding-standard": "^10.0",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "^9.5",
"psalm/plugin-symfony": "^3.0",
"rector/rector": "^0.14.3",
"symfony/browser-kit": "6.1.*",
"symfony/css-selector": "6.1.*",
"symfony/debug-bundle": "6.1.*",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "^6.1",
"symfony/stopwatch": "6.1.*",
"symfony/var-dumper": "6.1.*",
"symfony/web-profiler-bundle": "6.1.*",
"vimeo/psalm": "^4.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test": [
"@phpcs",
"@psalm",
"@phpunit"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpmd": "phpmd src,tests text phpmd.xml --exclude 'src/Kernel.php'",
"psalm": "psalm --show-info=false",
"phpunit": "simple-phpunit"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.1.*"
}
}
}