forked from Catrobat/Catroweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
156 lines (156 loc) · 5.06 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
154
155
156
{
"name": "catrobat/catroweb",
"type": "project",
"license": "MIT",
"description": "Catrobats' Share Community Platform",
"require": {
"php": ">=8.2",
"ext-SimpleXML": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-zip": "*",
"beberlei/doctrineextensions": "^1.3",
"catrobat/capi": "1.1.17",
"codercat/jwk-to-pem": "^1.1",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^3.6",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.14",
"eightpoints/guzzle-bundle": "^8.3",
"friendsofsymfony/elastica-bundle": "^6.2",
"gesdinet/jwt-refresh-token-bundle": "^1.1",
"google/apiclient": "^2.13",
"google/cloud-translate": "^1.12",
"http-interop/http-factory-guzzle": "*",
"hwi/oauth-bundle": "dev-master",
"incenteev/composer-parameter-handler": "^2.1",
"lexik/jwt-authentication-bundle": "^2.18",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug-bundle": "^1.27",
"php-http/message": "^1.13",
"ramsey/uuid": "^4.7",
"ramsey/uuid-doctrine": "^2.0",
"rosell-dk/webp-convert": "^2.9",
"sonata-project/admin-bundle": "^4.22",
"sonata-project/doctrine-orm-admin-bundle": "^4.9",
"sonata-project/exporter": "^3.1",
"sonata-project/twig-extensions": "^2.0",
"sonata-project/user-bundle": "^5.5.0",
"symfony/acl-bundle": "^2.3",
"symfony/asset": "6.2.*",
"symfony/cache": "6.2.*",
"symfony/console": "6.2.*",
"symfony/dotenv": "6.2.*",
"symfony/flex": "^2.2",
"symfony/framework-bundle": "6.2.*",
"symfony/intl": "6.2.*",
"symfony/mailer": "6.2.*",
"symfony/monolog-bundle": "^3.8",
"symfony/polyfill-iconv": "^1.27",
"symfony/process": "6.2.*",
"symfony/routing": "6.2.*",
"symfony/translation": "6.2.*",
"symfony/twig-bundle": "6.2.*",
"symfony/validator": "6.2.*",
"symfony/webpack-encore-bundle": "^1.16",
"symfony/yaml": "6.2.*",
"symfonycasts/reset-password-bundle": "^1.17",
"symfonycasts/verify-email-bundle": "^1.13",
"twig/extra-bundle": "^3.5",
"twig/twig": "^3.5"
},
"require-dev": {
"behat/behat": "^3.12",
"behat/mink": "^1.10",
"deployer/deployer": "^v7.1",
"dg/bypass-finals": "^1.4",
"dmore/behat-chrome-extension": "^1.4",
"dmore/chrome-mink-driver": "2.8.*",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"dvdoug/behat-code-coverage": "^5.3",
"friends-of-behat/symfony-extension": "^2.4",
"friends-of-behat/mink-extension": "v2.7.1",
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.6",
"rector/rector": "^0.15.0",
"symfony/browser-kit": "6.2.*",
"symfony/http-client": "6.2.*",
"symfony/maker-bundle": "^1.48",
"symfony/phpunit-bridge": "6.2.*",
"symfony/stopwatch": "6.2.*",
"symfony/web-profiler-bundle": "6.2.*",
"vimeo/psalm": "^4.30.0",
"wapmorgan/php-deprecation-detector": "^2.0",
"textalk/websocket": "1.5.8"
},
"config": {
"platform": {
"php": "8.2",
"ext-curl": "8.2",
"ext-gd": "8.2",
"ext-imagick": "3.4.4",
"ext-json": "1.7.0",
"ext-mbstring": "8.2",
"ext-pcntl": "8.2",
"ext-posix": "8.2",
"ext-zip": "8.2"
},
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"fix": [
"PHP_CS_FIXER_IGNORE_ENV=1 bin/php-cs-fixer fix --allow-risky=yes --verbose --format=txt"
]
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.2.*"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Catrobat/Catroweb-API"
}
]
}