-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
129 lines (129 loc) · 4.5 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
{
"name": "fphgov/residential-meeting",
"description": "Residential meeting",
"type": "project",
"config": {
"sort-packages": true,
"preferred-install": "source",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"laminas/laminas-component-installer": true,
"cweagans/composer-patches": true
}
},
"minimum-stability": "stable",
"extra": {
"laminas": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute"
]
},
"phpstan": {
"includes": [
"extension.neon"
]
},
"patches": {
"laminas/laminas-validator": {
"Supported URI and Hostname multiple validator": "./patches/validator_uri.patch"
}
},
"composer-exit-on-patch-failure": true,
"enable-patching": true
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"beberlei/doctrineextensions": "^1.3",
"cweagans/composer-patches": "^1.7",
"doctrine/annotations": "^1.13",
"dompdf/dompdf": "^2.0",
"guzzlehttp/guzzle": "^7.6.1",
"laminas/laminas-component-installer": "^2.4",
"laminas/laminas-config-aggregator": "^1.5",
"laminas/laminas-db": "^2.12",
"laminas/laminas-diactoros": "^3.0.0",
"laminas/laminas-hydrator": "^4.1",
"laminas/laminas-i18n": "^2.11.1",
"laminas/laminas-inputfilter": "^2.24",
"laminas/laminas-log": "^2.13.1",
"laminas/laminas-mail": "^2.14.0",
"laminas/laminas-servicemanager": "^3.8",
"laminas/laminas-stdlib": "^3.2.1",
"laminas/laminas-uri": "^2.9",
"lcobucci/jwt": "^5.0",
"mezzio/mezzio": "^3.2.1",
"mezzio/mezzio-authentication": "1.3.x-dev",
"mezzio/mezzio-authorization-acl": "^1.1",
"mezzio/mezzio-cors": "1.1.x-dev",
"mezzio/mezzio-fastroute": "^3.0.3",
"mezzio/mezzio-hal": "^2.0",
"mezzio/mezzio-helpers": "^5.5.1",
"mezzio/mezzio-laminasviewrenderer": "^2.13",
"middlewares/recaptcha": "^2.0",
"mustache/mustache": "^2.14",
"phpoffice/phpspreadsheet": "^1.17.1",
"ramsey/uuid": "^4.7.4",
"ramsey/uuid-doctrine": "^2.0.0",
"roave/psr-container-doctrine": "^3.5.0",
"symfony/property-access": "^5.3",
"symfony/serializer": "^5.3",
"symfony/uid": "^6.2",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"tuupola/cors-middleware": "dev-master",
"tuupola/slim-jwt-auth": "^3.7.0",
"vlucas/phpdotenv": "^5.5.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4.3",
"laminas/laminas-coding-standard": "2.4.0",
"laminas/laminas-development-mode": "^3.3",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.85",
"phpstan/phpstan-doctrine": "^0.12.33",
"phpunit/phpunit": "^9.5.9"
},
"autoload": {
"psr-4": {
"App\\": "src/App/src",
"Jwt\\": "src/Jwt/src/",
"Mail\\": "src/Mail/src/",
"Pdf\\": "src/Pdf/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/",
"DoctrineFixture\\": "test/DoctrineFixture/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "mezzio --ansi",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse -l 6 src",
"serve": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"db-update": "vendor/bin/doctrine orm:schema-tool:update --force"
}
}