-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
73 lines (73 loc) · 2.14 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
{
"name": "dgame/php-dto",
"description": "A data transfer object inspired by Rust's serde",
"license": "MIT",
"type": "package",
"keywords": [
"DTO",
"data transfer object"
],
"authors": [
{
"name": "Randy Schütt",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": "^8.0",
"dgame/php-cast": "^0.1.0",
"dgame/php-type": "^1.0",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.4",
"ergebnis/phpstan-rules": "^0.15",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "dev-master",
"spaceemotion/php-coding-standard": "dev-master",
"spaze/phpstan-disallowed-calls": "^1.5",
"symplify/easy-coding-standard": "^9.3",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dgame\\DataTransferObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dgame\\DataTransferObject\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"coverage": "phpunit --coverage-clover=coverage",
"lint": "phpcstd --continue",
"lint:fix": "phpcstd --fix --continue",
"lint:fix-style": "ecs --fix",
"lint:static": "phpstan",
"lint:style": "ecs",
"test": "phpunit"
}
}