-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
80 lines (80 loc) · 2.49 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
{
"name": "ecodev/my-ichtus",
"description": "My Ichtus",
"type": "project",
"homepage": "https://github.com/ecodev/my-ichtus",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpstan analyse --ansi",
"@test"
],
"fix": [
"php-cs-fixer fix --ansi"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"serve": "php -S 0.0.0.0:8080 -t htdocs/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"autoload": {
"psr-4": {
"Application\\": "server/Application/"
}
},
"autoload-dev": {
"psr-4": {
"ApplicationTest\\": "tests/ApplicationTest/"
}
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute"
]
}
},
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-zip": "*",
"beberlei/doctrineextensions": "^1.5",
"ecodev/felix": "^15.2",
"ecodev/graphql-doctrine": "^10.0",
"ecodev/graphql-upload": "^7.0",
"genkgo/camt": "^2.7",
"laminas/laminas-config-aggregator": "^1.15",
"laminas/laminas-http": "^2.19",
"laminas/laminas-servicemanager": "^3.22",
"mezzio/mezzio": "^3.19",
"mezzio/mezzio-fastroute": "^3.11",
"mezzio/mezzio-helpers": "^5.16",
"mezzio/mezzio-laminasviewrenderer": "^2.15",
"mezzio/mezzio-session-ext": "^1.19",
"phpoffice/phpspreadsheet": "^2.1",
"roave/psr-container-doctrine": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"laminas/laminas-development-mode": "^3.12",
"phpstan/phpstan-doctrine": "@stable",
"phpunit/phpunit": "^9.6"
}
}