-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.39 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
{
"name" : "mistralys/application-utils",
"description" : "Drop-in utilities for PHP applications.",
"type" : "library",
"license" : "GPL-3.0-or-later",
"authors" :
[
{
"email" : "s.mordziol@mistralys.eu",
"name" : "Sebastian Mordziol",
"role" : "Lead"
}
],
"autoload" :
{
"files" :
[
"src/functions.php"
],
"classmap" :
[
"src/"
]
},
"autoload-dev":
{
"classmap": [
"tests/TestClasses"
]
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"require" :
{
"mistralys/application-utils-core": ">=2.2.3",
"mistralys/application-utils-image": ">=1.1",
"mistralys/application-utils-result-handling": ">=1.0.1",
"parsecsv/php-parsecsv" : ">=1.3",
"php": ">=7.4",
"ext-mbstring": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-zip": "*",
"ext-libxml": "*"
},
"require-dev" :
{
"phpunit/phpunit" : ">=9.6",
"phpstan/phpstan" : ">=1.10"
},
"suggest" :
{
"mistralys/application-localization" : "Required to translate available texts, from date related methods or file size labels for example."
}
}