forked from petrovich/petrovich-php
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
68 lines (55 loc) · 1.7 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
{
"name": "staticall/petrovich-php",
"description": "Fork of original petrovich/petrovich-php repository, with testing, PHP7 support and minor improvements",
"license": "MIT",
"keywords": [
"petrovich",
"declination",
"inflection",
"russian"
],
"support": {
"issues": "https://github.com/staticall/petrovich-php/issues",
"source": "https://github.com/staticall/petrovich-php"
},
"require": {
"php": "^7.2.9",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/yaml": "~5.0",
"cloudloyalty/petrovich-rules": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~8.5.3",
"infection/infection": "~0.15.3",
"squizlabs/php_codesniffer": "~3.5.4"
},
"autoload": {
"psr-4": {
"Staticall\\Petrovich\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StaticallTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@mutation"
],
"cs-check": "phpcs",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"mutation": "infection"
},
"scripts-descriptions": {
"check": "Executes both code-style check and tests",
"cs-check": "Executes code-style checks, based on 'phpcs.xml' ruleset",
"test": "Executes PHPUnit tests",
"test-coverage": "Executes PHPUnit tests with coverage enabled. Used in deployment",
"mutation": "Executes Infection mutation testing"
}
}