-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.17 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.17 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
{
"name": "sunrise/translator",
"type": "library",
"homepage": "https://github.com/sunrise-php/translator",
"description": "A flexible translation manager.",
"license": "MIT",
"keywords": [
"fenric",
"sunrise",
"translator",
"i18n",
"l10n"
],
"authors": [
{
"name": "Anatoly Nekhay",
"email": "afenric@gmail.com",
"homepage": "https://github.com/fenric"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"php-di/php-di": "^7.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.11",
"symfony/translation": "^6.4",
"vimeo/psalm": "^6.5"
},
"autoload": {
"psr-4": {
"Sunrise\\Translator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sunrise\\Translator\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "@php phpcs --colors",
"psalm": "@php psalm --no-cache",
"phpstan": "@php phpstan analyse src --level=9 --memory-limit=-1",
"phpunit": "@php phpunit --colors=always",
"test": [
"@phpcs",
"@psalm",
"@phpstan",
"@phpunit"
]
},
"config": {
"sort-packages": true
}
}