-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
130 lines (130 loc) · 4.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
{
"type": "project",
"name": "owncourses/courses-server",
"description": "OwnCourses Server",
"license": "proprietary",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"async-aws/ses": "^1.4",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^1.12",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.7",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"league/flysystem-aws-s3-v3": "^1.0",
"lexik/jwt-authentication-bundle": "^2.6",
"nelmio/cors-bundle": "^1.5",
"nyholm/psr7": "^1.4",
"oneup/flysystem-bundle": "^3.4",
"phpdocumentor/reflection-docblock": "^5.1",
"pixassociates/sortable-behavior-bundle": "^1.5",
"ramsey/uuid-doctrine": "^1.6",
"sensio/framework-extra-bundle": "^5.5",
"sentry/sentry-symfony": "^4.2.1",
"sonata-project/admin-bundle": "3.68.0 ",
"sonata-project/doctrine-orm-admin-bundle": "3.18",
"sonata-project/formatter-bundle": "4.1.3",
"stof/doctrine-extensions-bundle": "^1.4",
"swp/settings-bundle": "2.0.x",
"symfony/amazon-mailer": "5.2.*",
"symfony/asset": "4.4.*",
"symfony/console": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/expression-language": "4.4.*",
"symfony/flex": "^1.6",
"symfony/form": "4.4.*",
"symfony/framework-bundle": "4.4.*",
"symfony/google-mailer": "4.4.*",
"symfony/http-client": "5.2.*",
"symfony/mailer": "4.4.*",
"symfony/monolog-bundle": "^3.5",
"symfony/process": "4.4.*",
"symfony/property-access": "4.4.*",
"symfony/property-info": "4.4.*",
"symfony/proxy-manager-bridge": "4.4.*",
"symfony/security-bundle": "4.4.*",
"symfony/serializer": "4.4.*",
"symfony/translation": "4.4.*",
"symfony/twig-bundle": "4.4.*",
"symfony/validator": "4.4.*",
"symfony/web-link": "4.4.*",
"symfony/yaml": "4.4.*",
"vich/uploader-bundle": "^1.13"
},
"require-dev": {
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^3.3",
"friends-of-behat/mink": "^1.8",
"friends-of-behat/symfony-extension": "^2.1",
"phpspec/phpspec": "^6.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"roave/security-advisories": "dev-master",
"symfony/debug-bundle": "^4.4",
"symfony/maker-bundle": "^1.17",
"symfony/stopwatch": "^4.4",
"symfony/web-profiler-bundle": "^4.4"
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"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": {
"compile": [
"php bin/console doctrine:migrations:migrate",
"php bin/console ckeditor:instal"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"ckeditor:install": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"allow-contrib": true,
"require": "4.4.*"
}
}
}