-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.98 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"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.7",
"phpstan/phpstan": "2.1.50",
"phpstan/phpstan-strict-rules": "2.0.10",
"phpunit/phpunit": "11.5.50",
"rector/rector": "2.4.0",
"symfony/var-dumper": "7.4.0 || 8.0.0",
"symplify/easy-coding-standard": "13.0.4",
"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"
],
"complete-check": [
"@cache-clear",
"@phplint",
"@rector-dry",
"@phpstan",
"@ecs-dry",
"@unittest"
],
"cache-clear": "rm -R ./cache/* -f",
"coverage": "php vendor/bin/phpunit --coverage-clover coverage.xml",
"ecs-apply": "php vendor/bin/ecs check --fix",
"ecs-dry": "php vendor/bin/ecs check",
"phplint": "php vendor/bin/phplint",
"phpstan": "php vendor/bin/phpstan analyse",
"rector-apply": "php vendor/bin/rector process --ansi",
"rector-dry": "php vendor/bin/rector process --dry-run --ansi",
"unittest": "php vendor/bin/phpunit --configuration phpunit.xml"
},
"minimum-stability": "stable",
"prefer-stable": true
}