-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
102 lines (102 loc) · 3.74 KB
/
composer.json
File metadata and controls
102 lines (102 loc) · 3.74 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "picamator/transfer-object",
"description": "A modern Symfony-compatible Transfer Object Generator with property hooks, FixedArray, and asymmetric visibilities.",
"keywords": [
"data-transfer-object",
"data-transfer-object-generator",
"dto",
"dto-generator",
"generator",
"symfony",
"symfony-console"
],
"license": "MIT",
"authors": [
{
"name": "Sergii Pryz",
"homepage": "https://linkedin.com/in/sergii-pryz",
"role": "Maintainer"
},
{
"name": "Community",
"homepage": "https://github.com/picamator/transfer-object/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/picamator/transfer-object/issues",
"wiki": "https://github.com/picamator/transfer-object/wiki",
"security": "https://github.com/picamator/transfer-object/security/policy"
},
"autoload": {
"psr-4": {
"Picamator\\TransferObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Picamator\\Tests\\Unit\\TransferObject\\": "tests/unit/",
"Picamator\\Tests\\Integration\\TransferObject\\": "tests/integration/",
"Picamator\\Tests\\Extension\\TransferObject\\": "tests/extension/",
"Picamator\\Examples\\TransferObject\\": "examples/"
}
},
"require": {
"php": ">=8.5",
"composer-runtime-api": "^2.2",
"symfony/console": "^8.0",
"symfony/filesystem": "^8.0",
"symfony/finder": "^8.0",
"symfony/yaml": "^8.0"
},
"require-dev": {
"captainhook/captainhook": "^5.27",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^13.0",
"slevomat/coding-standard": "^8.24",
"squizlabs/php_codesniffer": "^4.0",
"symfony/validator": "^8.0",
"symfony/var-dumper": "^8.0"
},
"suggest": {
"ext-bcmath": "Provides support for 'numberType'.",
"symfony/validator": "Adds support for attribute asserts using the 'sf-assert' shortcut."
},
"bin": [
"bin/transfer-generate",
"bin/transfer-generate-bulk",
"bin/definition-generate"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true,
"scripts": {
"captainhook": "captainhook",
"definition-generate": "@php ./bin/definition-generate",
"phpcbf": "phpcbf -q --colors",
"phpcs": "phpcs -q --colors",
"phpstan": "phpstan analyse -c phpstan.neon --no-progress --memory-limit=512M",
"phpunit": "phpunit --no-progress",
"phpunit-group": "@phpunit --testdox --group",
"transfer-generate": "@php ./bin/transfer-generate",
"transfer-generate-bulk": "@php ./bin/transfer-generate-bulk"
},
"scripts-aliases": {
"phpunit": ["test"]
},
"scripts-descriptions": {
"captainhook": "Manage and execute Git hooks.",
"definition-generate": "Create Transfer Object definition files based on JSON blueprints.",
"phpcbf": "Automatically fix coding style issues with PHP Code Beautifier and Fixer.",
"phpcs": "Analyze code style using PHP CodeSniffer.",
"phpstan": "Perform static code analysis using PHPStan.",
"phpunit": "Run unit and integration tests.",
"phpunit-group": "Run unit and integration tests assigned to the group.",
"transfer-generate": "Generate Transfer Objects from YML definition templates.",
"transfer-generate-bulk": "Generate Transfer Objects based on configuration list."
}
}