-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "supportpal/language-tools",
"description": "A set of CLI tools to help analyse and maintain SupportPal language files.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kieran Brahney",
"email": "kieran@supportpal.com"
}
],
"require": {
"php": ">=7.2.5",
"symfony/console": "^4.4|^5.0",
"sebastian/diff": "^3.0|^4.0",
"symfony/finder": "^4.4|^5.0"
},
"autoload": {
"psr-4": { "SupportPal\\LanguageTools\\": "src" }
},
"bin": ["language-tools"],
"require-dev": {
"supportpal/coding-standard": "^0.4.0",
"phpstan/phpstan": "^0.12.88 || ^1.0.0",
"phpunit/phpunit": "^8.5|^9.5"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.2.5"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}