-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.93 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wundii/data-mapper",
"type": "library",
"description": "Modern and fast object mapper for PHP 8.2+. Strict types. Converts CSV, JSON, XML, YAML, NEON, arrays, and objects to PHP objects.",
"keywords": ["datamapper","mapper","yaml","xml","object","neon","json","csv","array", "deserialization", "deserialize"],
"license": "MIT",
"authors": [
{
"name": "Andreas Wunderwald",
"email": "wundii@gmail.com"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"ext-xml": "*"
},
"require-dev": {
"nette/neon": "3.4.8",
"phpstan/phpstan": "2.2.8",
"phpstan/phpstan-strict-rules": "2.0.12",
"phpunit/phpunit": "11.5.50",
"rector/rector": "2.6.4",
"symfony/var-dumper": "7.4.0 || 8.0.0",
"symplify/easy-coding-standard": "13.2.17",
"wundii/phplint": "0.3.4"
},
"autoload": {
"psr-4": {
"Wundii\\DataMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Integration\\Objects\\": "tests/Integration/Objects/",
"MockClasses\\": "tests/MockClasses/"
}
},
"scripts": {
"auto-scripts": {
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"analyze": [
"@phplint",
"vendor/bin/rector process --dry-run --ansi",
"vendor/bin/ecs check",
"@stan"
],
"format": [
"vendor/bin/rector process",
"vendor/bin/ecs check --fix"
],
"cache-clear": "rm -R ./cache/* -f",
"coverage": "vendor/bin/phpunit --coverage-clover coverage.xml",
"phplint": "vendor/bin/phplint",
"stan": "vendor/bin/phpstan analyze",
"qa": [
"@cache-clear",
"@analyze",
"@test"
],
"qa-dry": [
"@cache-clear",
"@analyze"
],
"test": "vendor/bin/phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}