-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.78 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "hi-folks/data-block",
"description": "Data class for managing nested arrays and JSON data.",
"keywords": [
"Hi-Folks",
"JSON",
"data",
"PHP",
"array"
],
"homepage": "https://github.com/hi-folks/data-blocks",
"license": "MIT",
"authors": [
{
"name": "Roberto B.",
"email": "roberto.butti@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3|^8.4|^8.5",
"swaggest/json-schema": "^0.12.42",
"symfony/http-client-contracts": "^3.4.4",
"symfony/yaml": "^6.4|^7.1|^8.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"rector/rector": "^2",
"symfony/http-client": "^7.4|^8.0"
},
"suggest": {
"symfony/http-client": "HTTP client implementation"
},
"autoload": {
"psr-4": {
"HiFolks\\DataType\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HiFolks\\DataBlocks\\Tests\\": "tests"
}
},
"scripts": {
"all": [
"@test",
"@format",
"@phpstan",
"@rector"
],
"complete": [
"@test-with-url",
"@format",
"@phpstan"
],
"test": "vendor/bin/phpunit --exclude-group url",
"test-with-url": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html ./output-coverage-html",
"phpstan": "vendor/bin/phpstan",
"format": "vendor/bin/pint",
"rector": "vendor/bin/rector"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}