-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.42 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name" : "mistralys/text-diff",
"description" : "Class used to compare strings using a DIFF implementation.",
"type" : "library",
"license" : "MIT",
"authors" :
[
{
"homepage" : "https://iamkate.com",
"name" : "Kate Morley",
"role" : "Lead"
},
{
"email" : "s.mordziol@mistralys.eu",
"name" : "Sebastian Mordziol",
"role" : "Developer"
}
],
"autoload" :
{
"classmap" :
[
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/assets/classes"
]
},
"require" : {
"mistralys/application-utils" : ">=3.2.0",
"php" : ">=8.4"
},
"require-dev" :
{
"phpunit/phpunit" : ">=12.0",
"phpstan/phpstan" : ">=2.1",
"phpstan/phpstan-phpunit" : ">=2.0",
"roave/security-advisories" : "dev-latest"
},
"scripts" :
{
"build" : "php example/build.php",
"analyze" : "php vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit=900M",
"analyze-save" : "php vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit=900M > phpstan-result.txt || true",
"analyze-clear" : "php vendor/bin/phpstan clear-result-cache",
"test" : "php vendor/bin/phpunit",
"test-file" : "php vendor/bin/phpunit --no-progress",
"test-suite" : "php vendor/bin/phpunit --no-progress --testsuite",
"test-filter" : "php vendor/bin/phpunit --no-progress --filter",
"test-group" : "php vendor/bin/phpunit --no-progress --group"
},
"minimum-stability" : "dev",
"prefer-stable" : true
}