-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·135 lines (135 loc) · 4.42 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
{
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.4",
"ext-bcmath": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-redis": "*",
"ext-sockets": "*",
"4xxi/rest-request-errors": "1.4",
"caesar/security-message-bundle": "~0.1.5",
"doctrine/doctrine-fixtures-bundle": "3.3.2",
"doctrine/doctrine-migrations-bundle": "2.2.0",
"easycorp/easyadmin-bundle": "3.1.6",
"fresh/doctrine-enum-bundle": "6.6.4",
"friendsofsymfony/rest-bundle": "3.0.3",
"friendsofsymfony/user-bundle": "2.1.2",
"guzzlehttp/guzzle": "6.5.5",
"hashids/hashids": "4.0.0",
"hwi/oauth-bundle": "1.1.0",
"lexik/jwt-authentication-bundle": "2.8.0",
"nelmio/api-doc-bundle": "3.7.4",
"nelmio/cors-bundle": "2.1.0",
"pear/math_biginteger": "1.0.3",
"php-http/guzzle6-adapter": "2.0.1",
"php-http/httplug-bundle": "1.18.0",
"predis/predis": "1.1.6",
"psr/simple-cache": "1.0.1",
"ramsey/uuid": "4.1.1",
"ramsey/uuid-doctrine": "1.6.0",
"scheb/two-factor-bundle": "4.18.3",
"sensio/framework-extra-bundle": "5.6.1",
"sensiolabs/security-checker": "5.0.3",
"snc/redis-bundle": "2.1.13",
"sonata-project/google-authenticator": "2.2.0",
"stof/doctrine-extensions-bundle": "1.5.0",
"sylius/mailer-bundle": "1.5.1",
"symfony/asset": "4.4.15",
"symfony/console": "4.4.15",
"symfony/dotenv": "4.4.15",
"symfony/expression-language": "4.4.15",
"symfony/flex": "1.9.10",
"symfony/framework-bundle": "4.4.15",
"symfony/http-foundation": "4.4.15",
"symfony/mercure-bundle": "^0.2.6",
"symfony/messenger": "4.4.15",
"symfony/monolog-bundle": "3.6.0",
"symfony/orm-pack": "1.2.0",
"symfony/serializer-pack": "1.0.3",
"symfony/swiftmailer-bundle": "3.5.1",
"symfony/twig-bundle": "4.4.15",
"symfony/webpack-encore-bundle": "1.7.3",
"symfony/yaml": "4.4.15",
"willdurand/hateoas-bundle": "2.1.0",
"yoanm/symfony-jsonrpc-http-server": "3.0.2",
"yoanm/symfony-jsonrpc-params-validator": "2.0.2"
},
"require-dev": {
"codeception/codeception": "4.1.8",
"codeception/module-asserts": "1.3.0",
"codeception/module-datafactory": "1.0.0",
"codeception/module-db": "1.0.1",
"codeception/module-doctrine2": "1.0.1",
"codeception/module-phpbrowser": "1.0.1",
"codeception/module-rest": "1.2.4",
"codeception/module-symfony": "1.1.1",
"friendsofphp/php-cs-fixer": "2.16.4",
"phpstan/phpstan": "0.12.50",
"phpstan/phpstan-doctrine": "0.12.21",
"phpstan/phpstan-symfony": "0.12.8",
"psalm/plugin-symfony": "1.5.0",
"symfony/browser-kit": "4.4.15",
"symfony/debug-pack": "1.0.8",
"symfony/phpunit-bridge": "4.4.15",
"vimeo/psalm": "3.17.2",
"weirdan/doctrine-psalm-plugin": "0.11.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"local-php-security-checker --path=/var/www/html/composer.lock --format=ansi": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"analyse": [
"@php vendor/bin/php-cs-fixer fix --config=.php_cs.dist -vv",
"@php vendor/bin/phpstan analyse --memory-limit=-1",
"@php vendor/bin/psalm --show-info=false"
],
"test": [
"@analyse",
"@php vendor/bin/codecept run"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "",
"allow-contrib": false
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:caesar-team/CaesarSecureMessageBundle.git"
}
]
}