-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.4 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
{
"name": "mastir/php-dump",
"description": "Tool to convert app scopes into binary readable data dump",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"debug",
"dump",
"tool"
],
"authors": [
{
"name": "Yevhen pochekuiev",
"email": "themastir@gmail.com"
}
],
"require": {
"php": "^8.2",
"php-ds/php-ds": "^1.5",
"ext-zlib": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpro/grumphp": "*",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/php-code-coverage": "^10",
"phpunit/phpunit": "^10",
"vimeo/psalm": "^5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mastir\\PhpDump\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mastir\\Test\\PhpDump\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"captainhook/captainhook-phar": false,
"captainhook/plugin-composer": false,
"phpro/grumphp": true
},
"sort-packages": true
}
}