forked from Catrobat/Catroweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
143 lines (133 loc) · 4.16 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
{
"name": "catrobat/catroweb",
"type": "project",
"license": "proprietary",
"description": "Catroweb Symfony Share Platform",
"require": {
"php": ">=7.4",
"ext-SimpleXML": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-zip": "*",
"beberlei/doctrineextensions": "^1.2",
"catrobat/capi": "1.0.43",
"codercat/jwk-to-pem": "^0.0.3",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"eightpoints/guzzle-bundle": "^8.0",
"friendsofsymfony/elastica-bundle": "^5.1",
"friendsofsymfony/jsrouting-bundle": "^2.6",
"friendsofsymfony/rest-bundle": "^2.7",
"google/apiclient": "^2.4",
"hwi/oauth-bundle": "v1.2.x-dev",
"incenteev/composer-parameter-handler": "^2.1",
"lexik/jwt-authentication-bundle": "^2.6",
"liip/theme-bundle": "^1.7",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug-bundle": "^1.18",
"php-http/message": "^1.8",
"rosell-dk/webp-convert": "^2.3",
"sensio/framework-extra-bundle": "^5.5",
"sonata-project/admin-bundle": "^3.68",
"sonata-project/doctrine-orm-admin-bundle": "^3.18",
"sonata-project/user-bundle": "^4.5",
"symfony/acl-bundle": "^2.0",
"symfony/console": "^4.4",
"symfony/dotenv": "^5.0",
"symfony/flex": "^1.7",
"symfony/framework-bundle": "^4.4",
"symfony/intl": "^5.0",
"symfony/monolog-bundle": "^3.5",
"symfony/polyfill-iconv": "^1.18",
"symfony/process": "^5.0",
"symfony/swiftmailer-bundle": "^3.4",
"symfony/twig-pack": "^1.0",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "^5.0"
},
"require-dev": {
"behat/behat": "^3.6",
"behat/mink": "^1.8",
"behat/mink-extension": "^2.3",
"behat/symfony2-extension": "^2.1",
"deployer/deployer": "^6.7",
"deployer/recipes": "^6.2",
"dmore/behat-chrome-extension": "^1.3",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"dvdoug/behat-code-coverage": "^5.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "0.12.50",
"phpstan/phpstan-doctrine": "0.12.22",
"phpstan/phpstan-phpunit": "0.12.16",
"phpstan/phpstan-symfony": "0.12.10",
"phpunit/phpunit": "^9.2",
"symfony/browser-kit": "^5.0",
"symfony/maker-bundle": "*",
"symfony/phpunit-bridge": "*",
"symfony/profiler-pack": "^1.0",
"vimeo/psalm": "^4.0",
"vipsoft/doctrine-data-fixtures-extension": "3.0.*@dev",
"wapmorgan/php-code-fixer": "dev-master"
},
"config": {
"platform": {
"php": "7.4",
"ext-gd": "7.4",
"ext-imagick": "3.4.4",
"ext-json": "1.7.0",
"ext-mbstring": "7.4",
"ext-pcntl": "7.4",
"ext-posix": "7.4",
"ext-zip": "1.15.4"
},
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": 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"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true
},
"require": "^4.4"
},
"repositories": [{
"type": "vcs",
"url": "https://github.com/Catrobat/Catroweb-API"
}, {
"type": "vcs",
"url": "git@github.com:leno12/HWIOAuthBundle.git"
}]
}