-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.64 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name" : "mistralys/application-utils",
"description" : "Drop-in utilities for PHP applications.",
"type" : "library",
"license" : "MIT",
"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.5.0",
"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" : ">=12.5",
"phpstan/phpstan" : ">=2.1"
},
"suggest" :
{
"mistralys/application-localization" : "Required to translate available texts, from date related methods or file size labels for example."
},
"scripts" :
{
"analyze" : "phpstan analyze -M 900M",
"analyze-save" : "phpstan analyze -M 900M --no-progress > docs/phpstan/output.txt",
"test" : "phpunit",
"test-save" : "phpunit --colors=never > docs/phpunit/output.txt"
}
}