forked from ilios/ilios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
153 lines (153 loc) · 4.32 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
145
146
147
148
149
150
151
152
153
{
"name": "ilios/ilios",
"license": "MIT",
"type": "project",
"description": "The \"Ilios Standard Edition\" distribution",
"require": {
"php": ">= 8.1",
"ext-apcu": "*",
"ext-ctype": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"ext-zlib": "*",
"composer/composer": "^2.1",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/inflector": "^2.0",
"doctrine/orm": "^2.9",
"elasticsearch/elasticsearch": "^7.0",
"eluceo/ical": "^2.5.1",
"exercise/htmlpurifier-bundle": "^4.0",
"firebase/php-jwt": "@stable",
"flagception/flagception-bundle": "^4.3",
"ilios/mesh-parser": "^2.0",
"jaybizzle/crawler-detect": "^1.2",
"league/csv": "^9.5",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"liip/monitor-bundle": "^2.6",
"nelmio/api-doc-bundle": "^4.9",
"nelmio/cors-bundle": "^2.0",
"pear/archive_tar": "^1.4",
"phpdocumentor/reflection-docblock": "^5.2",
"psr/log": "^3.0.0",
"sentry/sentry-symfony": "^4.2",
"shivas/versioning-bundle": "^4.0",
"swagger-api/swagger-ui": "^4.0",
"symfony/amazon-mailer": "@stable",
"symfony/apache-pack": "@stable",
"symfony/asset": "@stable",
"symfony/console": "@stable",
"symfony/doctrine-messenger": "@stable",
"symfony/dotenv": "@stable",
"symfony/flex": "@stable",
"symfony/framework-bundle": "@stable",
"symfony/http-client": "@stable",
"symfony/ldap": "@stable",
"symfony/lock": "@stable",
"symfony/mailchimp-mailer": "@stable",
"symfony/mailer": "@stable",
"symfony/mailgun-mailer": "@stable",
"symfony/messenger": "@stable",
"symfony/monolog-bundle": "@stable",
"symfony/postmark-mailer": "@stable",
"symfony/property-access": "@stable",
"symfony/property-info": "@stable",
"symfony/proxy-manager-bridge": "@stable",
"symfony/requirements-checker": "@stable",
"symfony/runtime": "@stable",
"symfony/security-bundle": "@stable",
"symfony/sendgrid-mailer": "@stable",
"symfony/serializer": "@stable",
"symfony/twig-bundle": "@stable",
"symfony/validator": "@stable",
"symfony/web-link": "@stable",
"symfony/yaml": "@stable",
"webonyx/graphql-php": "^14.9"
},
"require-dev": {
"infection/infection": "^0.26.9",
"liip/test-fixtures-bundle": "@stable",
"mockery/mockery": "@stable",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-symfony": "@stable",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "@stable",
"symfony/browser-kit": "@stable",
"symfony/css-selector": "@stable",
"symfony/debug-bundle": "@stable",
"symfony/phpunit-bridge": "@stable",
"symfony/stopwatch": "@stable",
"symfony/web-profiler-bundle": "@stable"
},
"config": {
"platform": {
"php": "8.1"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"phpstan/extension-installer": true,
"symfony/runtime": true,
"infection/extension-installer": true
}
},
"minimum-stability": "stable",
"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"
},
"ilios-scripts": [
"App\\Composer\\MigrateParameters::migrate",
"App\\Composer\\MigrateCustomTemplates::migrate"
],
"post-install-cmd": [
"@auto-scripts",
"@ilios-scripts"
],
"post-update-cmd": [
"@auto-scripts",
"@ilios-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.1.*",
"docker": false
}
}
}