-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 2.62 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "dobrosite/php-mapping",
"description": "Отображение данных на структуры PHP",
"type": "library",
"keywords": [
"PHP"
],
"license": "MIT",
"authors": [
{
"name": "Михаил Красильников",
"email": "m.krasilnikov@yandex.ru"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"composer-unused/composer-unused-plugin": true,
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": false,
"sort-packages": true
},
"scripts": {
"analyze": [
"@phpunit",
"@phpstan",
"@rector",
"@infection",
"@code-style"
],
"auto-fix": [
"@rector-fix",
"@code-style-fix",
"@phpunit"
],
"code-style": [
"vendor/bin/ecs check src tests"
],
"code-style-fix": [
"vendor/bin/ecs check src tests --fix"
],
"infection": "vendor/bin/infection -j$(nproc)",
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "vendor/bin/phpunit",
"rector": [
"vendor/bin/rector process --dry-run"
],
"rector-fix": [
"vendor/bin/rector process"
]
},
"require": {
"php": "^8.1",
"ext-intl": "*"
},
"require-dev": {
"ext-iconv": "*",
"composer/package-versions-deprecated": "^1.11",
"ergebnis/composer-normalize": "^2.28",
"fakerphp/faker": "^1.20",
"icanhazstring/composer-unused": "^0.8.2",
"infection/infection": "^0.26.0,<0.26.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5,<9.5.17",
"rector/rector": "^0.13.10",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symplify/easy-coding-standard": "^11.1"
},
"autoload": {
"psr-4": {
"DobroSite\\Mapping\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
},
"files": [
"tests/faker.php",
"tests/Fixture/factory_function.php"
]
}
}