-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
101 lines (101 loc) · 3.03 KB
/
composer.json
File metadata and controls
101 lines (101 loc) · 3.03 KB
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
{
"name": "hschletz/braintacle",
"description": "A set of applications for managing hard- and software on a network",
"type": "project",
"homepage": "https://hschletz.github.io/Braintacle",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Holger Schletz",
"email": "holger.schletz@web.de"
}
],
"support": {
"issues": "https://github.com/hschletz/Braintacle/issues"
},
"autoload": {
"psr-4": {
"Braintacle\\": "src",
"Braintacle\\Test\\": "tests",
"Laminas\\Db\\": "3rdparty/Db",
"": "module"
}
},
"require": {
"php-64bit": "8.2 - 8.5",
"ext-dom": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-zip": "*",
"doctrine/dbal": "^4.3",
"doctrine/migrations": "^3.8",
"gettext/gettext": "^5.7",
"guzzlehttp/guzzle": "^7.10",
"guzzlehttp/psr7": "^2.8",
"hschletz/formotron": "^0.6",
"hschletz/nada": "^1.3",
"laminas/laminas-authentication": "^2.5",
"laminas/laminas-di": "^3.9",
"laminas/laminas-escaper": "^2.13",
"laminas/laminas-filter": "^2.18",
"laminas/laminas-form": "^3.4",
"laminas/laminas-hydrator": "^4.5",
"laminas/laminas-i18n": "^2.17",
"laminas/laminas-i18n-resources": "^2.5",
"laminas/laminas-inputfilter": "^2.19",
"laminas/laminas-router": "^3.9",
"laminas/laminas-servicemanager": "^3.16",
"laminas/laminas-session": "^2.13",
"laminas/laminas-stdlib": "^3.13",
"laminas/laminas-uri": "^2.9",
"laminas/laminas-validator": "^2.24",
"laminas/laminas-view": "^2.22",
"latte/latte": "^3.0",
"monolog/monolog": "^3.8",
"php-di/php-di": "^7.0",
"psr/clock": "^1.0",
"slim/slim": "^4.13",
"symfony/console": "^7.3",
"symfony/event-dispatcher": "^7.3",
"symfony/filesystem": "^7.3",
"symfony/var-dumper": "^7.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"dg/bypass-finals": "^1.3",
"gettext/php-scanner": "^2.0",
"masterminds/html5": "^2.9",
"mikey179/vfsstream": "^1.6",
"misantron/dbunit": "^5.2",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^10.5",
"symfony/css-selector": "^7.4",
"symfony/dom-crawler": "^7.4",
"symfony/process": "^7.3"
},
"suggest": {
"ext-zlib": "Required for 'braintacle-tool.php decode'"
},
"replace": {
"laminas/laminas-json": "*"
},
"bin": [
"braintacle-tool.php"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.2.29"
},
"sort-packages": true
},
"scripts": {
"migrations": "doctrine-migrations",
"phpcs": "phpcs",
"phpstan": "phpstan",
"psalm": "psalm"
}
}