-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.13 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "lukascivil/treewalker",
"description": "TreeWalker is a simple and small Library that will help you to work faster with manipulation of structures in PHP",
"keywords": [
"JSON",
"objects",
"diff",
"merge",
"dynamically",
"recursivelly",
"array",
"struct"
],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "lucas cordeiro da Silva",
"email": "lukas_civil@hotmail.com"
}
],
"require": {
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text",
"check-format": [
"vendor/bin/php-cs-fixer check --diff",
"vendor/bin/phpcs --standard=PSR2 --exclude=PSR1.Classes.ClassDeclaration src tests"
],
"format": [
"vendor/bin/php-cs-fixer fix",
"vendor/bin/phpcbf --standard=PSR2 --exclude=PSR1.Classes.ClassDeclaration src tests"
]
},
"require-dev": {
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.95",
"squizlabs/php_codesniffer": "^4.0"
},
"config": {
"platform": {
"php": "8.1"
}
}
}