-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.57 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
{
"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": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"swaggest/json-schema": "^0.12.42",
"symfony/yaml": "^6.4|^7.1"
},
"require-dev": {
"laravel/pint": "^1.2",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.6",
"rector/rector": "^1"
},
"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/pest --exclude-group=url",
"test-with-url": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"phpstan": "vendor/bin/phpstan",
"format": "vendor/bin/pint",
"rector": "vendor/bin/rector"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}