-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·86 lines (86 loc) · 2.35 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
{
"name": "monarc/frontoffice",
"description": "Frontoffice for monarc/monarc application",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Cyril Rouyer",
"email": "[email protected]"
},
{
"name": "Guillaume Lesniak",
"email": "[email protected]"
},
{
"name": "Jérôme De Almeida",
"email": "[email protected]"
},
{
"name": "Benjamin Ganivet",
"email": "[email protected]"
},
{
"name": "Thomas Metois",
"email": "[email protected]"
},
{
"name": "Jérôme Lombardi",
"email": "[email protected]"
},
{
"name": "Juan Rocha",
"email": "[email protected]"
},
{
"name": "Cédric Bonhomme",
"email": "[email protected]"
},
{
"name": "Ruslan Baidan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-intl": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-bcmath": "*",
"ext-openssl": "*",
"ext-posix": "*",
"doctrine/doctrine-orm-module": "^5.1",
"monarc/core": "^2.13.1",
"robmorgan/phinx": "^0.13.4",
"laminas/laminas-di": "^3.1",
"laminas/laminas-mvc": "^3.1",
"laminas/laminas-mvc-console": "^1.2",
"laminas/laminas-permissions-rbac": "^3.0",
"laminas/laminas-filter": "^2.9",
"laminas/laminas-inputfilter": "^2.10",
"laminas/laminas-dependency-plugin": "^2.0",
"symfony/console": "^5.0",
"guzzlehttp/guzzle": "^6.5",
"phpoffice/phpword": "^0.18.1",
"laminas/laminas-mvc-middleware": "^2.2"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Monarc\\FrontOffice\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR2 src/"
},
"bin": ["bin/console"],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"laminas/laminas-dependency-plugin": true
}
}
}