-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
71 lines (71 loc) · 2.01 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
68
69
70
71
{
"name": "phpmyadmin/motranslator",
"description": "Translation API for PHP using Gettext MO files",
"license": "GPL-2.0-or-later",
"keywords": ["gettext", "mo", "translator", "i18n"],
"homepage": "https://github.com/phpmyadmin/motranslator",
"authors": [
{
"name": "The phpMyAdmin Team",
"email": "[email protected]",
"homepage": "https://www.phpmyadmin.net/team/"
}
],
"support": {
"issues": "https://github.com/phpmyadmin/motranslator/issues",
"source": "https://github.com/phpmyadmin/motranslator"
},
"scripts": {
"phpcbf": "@php phpcbf",
"phpcs": "@php phpcs",
"phpstan": "@php phpstan",
"phpunit": "@php phpunit",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"require": {
"php": "^8.2",
"symfony/expression-language": "^6.4 || ^7.0"
},
"require-dev": {
"phpmyadmin/coding-standard": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.6"
},
"suggest": {
"ext-apcu": "Needed for ACPu-backed translation cache"
},
"autoload": {
"psr-4": {
"PhpMyAdmin\\MoTranslator\\": "src"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"PhpMyAdmin\\MoTranslator\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"discard-changes": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
}
}