-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.2 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.2 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
{
"name": "messere/php-value-mask",
"description": "extract subset of array / object values",
"version": "0.1.2",
"type": "library",
"keywords": [
"filter",
"filtering",
"mask",
"partial response",
"array filtering",
"json filtering"
],
"homepage": "https://github.com/Messere/php-value-mask",
"readme": "readme.md",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Dariusz Sieradzki",
"email": "opensource@aerolit.pl"
}
],
"autoload": {
"psr-4": {
"messere\\phpValueMask\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"messere\\phpValueMask\\": "tests/"
}
},
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0",
"squizlabs/php_codesniffer": "^3.3",
"phpmd/phpmd": "^2.6"
},
"scripts": {
"tests": [
"phpunit"
],
"phpcs": [
"phpcs --standard=PSR2 src/"
],
"phpmd": [
"phpmd src text cleancode,codesize,controversial,design,naming,unusedcode"
],
"fix": [
"phpcbf --standard=PSR2 src/"
],
"build": [
"@tests",
"@phpcs",
"@phpmd"
]
}
}