-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.43 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
{
"name": "letraceursnork/php-decliner",
"description": "This repository offers a PHP-based solution for declension of nouns by grammatical cases along with numerals. It ensures correct noun forms based on case (nominative, genitive, etc.) and the numeral used, handling the specific rules of declension in supported languages.",
"type": "library",
"autoload": {
"psr-4": {
"LTS\\PhpDecliner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LTS\\PhpDecliner\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "LeTraceurSnork",
"email": "le_traceur_snork@mail.ru"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.3"
},
"scripts": {
"php-cs-fixer-check": "@php ./vendor/bin/php-cs-fixer fix --dry-run --config=.php-cs-fixer.dist.php",
"php-cs-fixer-fix": "@php ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon --no-progress --ansi --verbose",
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --color=always",
"phpunit-coverage-file": "@php ./vendor/bin/phpunit --color=always",
"phpunit-coverage-text": "@php ./vendor/bin/phpunit --coverage-text --color=never"
}
}