-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
{
"name": "usox/tal-i18n-extract",
"description": "Extractor for tal i18n translation attributes (port of perls I18NFool cpan package)",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Usox\\TalI18nExtract\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Usox\\TalI18nExtract\\": "tests/"
}
},
"authors": [
{
"name": "Daniel Jakob",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0",
"ext-dom": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.41",
"mikey179/vfsstream": "^1.6",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^10.5",
"rector/rector": "^0.18"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"bin": ["bin/tal-i18n-extract"],
"scripts": {
"qa": [
"@test",
"@stan",
"@cs:dry",
"@rector:dry"
],
"test": "phpunit",
"stan": "phpstan",
"cs:fix": "php-cs-fixer fix",
"cs:dry": "php-cs-fixer fix --dry-run --diff",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage tests",
"rector:dry": "rector process -n",
"rector:fix": "rector process"
},
"scripts-descriptions": {
"qa": "Run all all qa-related tests",
"test": "Run unit-tests",
"stan": "Run static analysis",
"cs:fix": "Fix code-style issues",
"cs:dry": "Check for code-style issues",
"coverage": "Generates the code-coverage",
"rector:dry": "Check for available code-migrations",
"rector:fix": "Apply pending code-migrations"
}
}