-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.24 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "sd/dumper",
"homepage": "https://github.com/sedmsk/dumper",
"license": "MIT",
"authors": [
{
"name": "Igor Finagin",
"email": "Igor@Finag.in",
"homepage": "https://github.com/finagin",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"symfony/var-dumper": "^7.2"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "^3.7",
"phpunit/php-code-coverage": "^12.0",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"SD\\Dumper\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": [
"@composer install --no-interaction",
"phpunit --colors --testdox",
"phpdoc"
],
"post-autoload-dump": [
"resources/scripts/composer/post-autoload-dump"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}