-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.87 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.87 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
{
"name" : "mistralys/application-localization",
"description" : "PHP and Javascript localization library.",
"type" : "library",
"license" : "MIT",
"authors" :
[
{
"email" : "s.mordziol@mistralys.eu",
"name" : "Sebastian Mordziol",
"role" : "Lead"
}
],
"autoload" :
{
"files" :
[
"src/functions.php"
],
"classmap" :
[
"src/"
]
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"require" :
{
"mistralys/application-utils-core" : ">=2.5.0",
"mistralys/php-sprintf-parser" : "^1.0",
"mistralys/html_quickform2": ">=2.3.5",
"mistralys/application-utils-collections": ">=1.2.1",
"mistralys/changelog-parser": ">=1.1.0",
"mck89/peast": ">=v1.17.0",
"php": "^8.4",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev" :
{
"phpunit/phpunit" : ">=12.0",
"phpstan/phpstan" : ">=2.1",
"phpstan/phpstan-phpunit" : ">=2.0",
"roave/security-advisories" : "dev-latest"
},
"scripts": {
"post-autoload-dump": "@php tests/clear-class-cache.php",
"clear-class-cache": "@php tests/clear-class-cache.php",
"build": "\\AppLocalize\\Tools\\ReleaseBuilder::build",
"export-translations": "\\AppLocalize\\Tools\\TranslationExporter::run",
"import-translations": "\\AppLocalize\\Tools\\TranslationImporter::run",
"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"
}
}