forked from benjaminjonard/koillection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
146 lines (146 loc) · 4.68 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
{
"name": "benjaminjonard/koillection",
"description": "Koillection is a self-hosted service allowing users to manage any kind of collection.",
"type": "project",
"license": "MIT",
"version": "1.5.13",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"api-platform/core": "4.0.2",
"composer/semver": "3.4.3",
"doctrine/doctrine-bundle": "2.13.0",
"doctrine/doctrine-migrations-bundle": "3.3.1",
"doctrine/orm": "3.2.2",
"doctrine/dbal": "3.9.1",
"doctrine/persistence": "3.3.3",
"lexik/jwt-authentication-bundle": "3.1.0",
"maennchen/zipstream-php": "3.1.0",
"nelmio/cors-bundle": "2.5.0",
"runtime/frankenphp-symfony": "0.2.0",
"symfony/asset": "7.1.1",
"symfony/browser-kit": "7.1.1",
"symfony/cache": "7.1.5",
"symfony/console": "7.1.5",
"symfony/css-selector": "7.1.1",
"symfony/dependency-injection": "7.1.5",
"symfony/dotenv": "7.1.5",
"symfony/error-handler": "7.1.3",
"symfony/event-dispatcher": "7.1.1",
"symfony/expression-language": "7.1.4",
"symfony/finder": "7.1.4",
"symfony/flex": "2.4.6",
"symfony/form": "7.1.5",
"symfony/framework-bundle": "7.1.5",
"symfony/http-client": "7.1.5",
"symfony/http-foundation": "7.1.5",
"symfony/http-kernel": "7.1.5",
"symfony/intl": "7.1.5",
"symfony/mime": "7.1.5",
"symfony/monolog-bundle": "3.10.0",
"symfony/process": "7.1.5",
"symfony/property-access": "7.1.4",
"symfony/property-info": "7.1.3",
"symfony/routing": "7.1.4",
"symfony/runtime": "7.1.1",
"symfony/security-bundle": "7.1.4",
"symfony/security-core": "7.1.5",
"symfony/security-http": "7.1.5",
"symfony/serializer": "7.1.5",
"symfony/string": "7.1.5",
"symfony/translation": "7.1.5",
"symfony/twig-bridge": "7.1.5",
"symfony/twig-bundle": "7.1.5",
"symfony/uid": "7.1.5",
"symfony/validator": "7.1.5",
"symfony/web-link": "7.1.1",
"symfony/webpack-encore-bundle": "2.1.1",
"symfony/yaml": "7.1.5",
"twig/extra-bundle": "3.13.0",
"twig/intl-extra": "3.13.0",
"twig/string-extra": "3.13.0",
"twig/twig": "3.14.0"
},
"require-dev": {
"brianium/paratest": "7.5.5",
"dama/doctrine-test-bundle": "8.2.0",
"friendsofphp/php-cs-fixer": "3.64.0",
"justinrainbow/json-schema": "6.0.0",
"phpunit/php-code-coverage": "11.0.6",
"phpunit/phpunit": "11.3.6",
"rector/rector": "1.2.5",
"symfony/maker-bundle": "1.61.0",
"symfony/stopwatch": "7.1.1",
"symfony/var-dumper": "7.1.5",
"symfony/web-profiler-bundle": "7.1.4",
"zenstruck/foundry": "2.0.9"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Api\\": "api/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"Composer\\Config::disableProcessTimeout",
"./vendor/phpunit/phpunit/phpunit --color=always --coverage-html=\"output/code-coverage\""
],
"test:phpunit": [
"Composer\\Config::disableProcessTimeout",
"./vendor/phpunit/phpunit/phpunit --display-deprecations"
],
"test:paratest": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/paratest --runner=WrapperRunner"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"docker": false,
"require": "7.1.*"
},
"runtime": {
"class": "Runtime\\FrankenPhpSymfony\\Runtime"
}
}
}