-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.37 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
{
"name": "onmoon/dto-mapper",
"description": "Class to map any array or class tree into DTO",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dmitry Kuskov",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"thecodingmachine/safe": "^1.1",
"symfony/property-info": "^5.0|^6.0",
"phpdocumentor/reflection-docblock": "^5.0"
},
"autoload": {
"psr-4": {
"OnMoon\\DtoMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OnMoon\\DtoMapper\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "phpcs",
"csfix": "phpcbf",
"stan": "phpstan analyze src -l 8 --memory-limit=512m",
"sec": "security-checker security:check",
"test": "phpunit",
"all": "composer stan && composer test && composer cs && composer sec"
},
"require-dev": {
"doctrine/coding-standard": "^8.2",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.1",
"sensiolabs/security-checker": "^6.0",
"squizlabs/php_codesniffer": "^3.5",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}