-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
110 lines (110 loc) · 3.15 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
{
"name": "clubnix/votix",
"type": "project",
"description": "Votix. The advanced and secure online voting platform.",
"license": "MIT",
"authors": [
{
"name": "Philippe Lewin",
"email": "[email protected]"
},
{
"name": "Club*Nix",
"email": "[email protected]"
}
],
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"classmap": []
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\Unit\\": "tests/unit",
"App\\Tests\\Acceptance\\": "tests/acceptance",
"App\\Tests\\": "tests/_support",
"Helper\\": "tests/_support/Helper/",
"_generated\\": "tests/_support/_generated/"
}
},
"config": {
"platform": {
"php": "7.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"ext-pdo_sqlite": "*",
"async-aws/ses": "^1.3",
"laminas/laminas-crypt": "^3.3",
"laminas/laminas-zendframework-bridge": "^1.1",
"sensio/framework-extra-bundle": "^5.2",
"symfony/amazon-mailer": "5.2.*",
"symfony/asset": "^5.2",
"symfony/debug-pack": "^1.0",
"symfony/dotenv": "^5.1",
"symfony/flex": "^1.11",
"symfony/form": "^5.2",
"symfony/mailer": "5.2.*",
"symfony/monolog-bundle": "^3.3",
"symfony/orm-pack": "^2.0",
"symfony/security-bundle": "^5.2",
"symfony/serializer-pack": "^1.0",
"symfony/translation": "^5.2",
"symfony/twig-bundle": "^5.2",
"symfony/validator": "^5.2",
"symfony/webpack-encore-bundle": "^1.2",
"symfony/yaml": "5.2.*"
},
"conflict": {
"symfony/symfony": "*"
},
"require-dev": {
"codeception/c3": "2.*",
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-symfony": "^1.0.0",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"phpunit/phpunit": "^9",
"psalm/plugin-symfony": "^2.1",
"roave/security-advisories": "dev-master",
"symfony/maker-bundle": "^1.11",
"symfony/profiler-pack": "^1.0",
"vimeo/psalm": "^4.3"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.2.*"
}
}
}