-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 4.01 KB
/
composer.json
File metadata and controls
115 lines (115 loc) · 4.01 KB
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
{
"name": "hinkelmann/friga",
"license": "GPL-3.0-or-later",
"description": "Platform for management academic selective process",
"keywords": ["selective process","platform","UFSM", "friga", "academic"],
"homepage": "https://nte.ufsm.br/friga",
"authors": [
{
"name": "Luiz Guilherme Dall' Acqua",
"email": "acqua.luiz@ufsm.br",
"homepage": "https://ufsm.br/cte",
"role": "Developer"
},
{
"name": "Alexandre Schlöttgen",
"email": "alexandre@nte.ufsm.br",
"homepage": "https://ufsm.br/cte",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" },
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": ">=7.4",
"ext-bcmath": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-zip": "*",
"backup-manager/symfony": "^2.2",
"bigbluebutton/bigbluebutton-api-php": "^2.2.0",
"composer/composer": "2.2.*",
"curl/curl": "^1.6",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/orm": "^2.5",
"friendsofsymfony/oauth-server-bundle": "^1.6",
"friendsofsymfony/rest-bundle": "^2.5",
"friendsofsymfony/user-bundle": "^2.0",
"incenteev/composer-parameter-handler": "^2.0",
"jms/serializer-bundle": "^3.4",
"league/flysystem-replicate-adapter": "^1.0",
"league/flysystem-sftp": "^1.0",
"nelmio/api-doc-bundle": "^3.4",
"nelmio/cors-bundle": "^1.5",
"oneup/flysystem-bundle": "^1.14",
"oneup/uploader-bundle": "^1.9",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"setasign/fpdi": "^2.0",
"smalot/pdfparser": "^2.7",
"spatie/schema-org": "^2.9",
"symfony/flex": "^1.19",
"symfony/monolog-bundle": "^3.0.2",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/symfony": "3.4.*",
"symfony/webpack-encore-bundle": "^1.8",
"tecnickcom/tcpdf": "6.3.*",
"twig/twig": "^1.0||^2.0",
"twistor/flysystem-stream-wrapper": "^1.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
],
"auto-scripts": {
"security-checker security:check": "script"
}
},
"config": {
"platform": {
"php": "7.4"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"composer/package-versions-deprecated": true
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "3.4-dev"
}
}
}