-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.83 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "php-collective/dto",
"description": "Framework-agnostic Data Transfer Object library with code generation",
"license": "MIT",
"type": "library",
"keywords": [
"dto",
"data-transfer-object",
"code-generation",
"php"
],
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://github.com/dereuromark",
"role": "Maintainer"
},
{
"name": "PHP Collective",
"homepage": "https://github.com/php-collective"
}
],
"homepage": "https://github.com/php-collective/dto",
"require": {
"php": "^8.2",
"sebastian/diff": "^6.0 || ^7.0 || ^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"justinrainbow/json-schema": "^6.0",
"nette/neon": "^3.3",
"php-collective/code-sniffer": "dev-master",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0 || ^12.0 || ^13.0"
},
"suggest": {
"justinrainbow/json-schema": "For YAML/NEON schema validation",
"nette/neon": "For NEON format support"
},
"bin": [
"bin/dto"
],
"autoload": {
"psr-4": {
"PhpCollective\\Dto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCollective\\Dto\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors --parallel=16",
"cs-fix": "phpcbf --colors --parallel=16",
"stan": "phpstan analyze",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}