-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 2.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "internal/dload",
"description": "Downloads binaries.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"downloader",
"download binaries"
],
"authors": [
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
}
],
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/roxblnfk"
}
],
"require": {
"php": ">=8.1",
"psr/container": "1 - 2",
"react/async": "3 - 4",
"react/promise": "2 - 3",
"symfony/console": "^6.4 || ^7",
"symfony/http-client": "4 - 7",
"yiisoft/injector": "^1.2"
},
"require-dev": {
"buggregator/trap": "^1.10",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"ergebnis/phpunit-slow-test-detector": "^2.14",
"friendsofphp/php-cs-fixer": "^3.54",
"pestphp/pest": "^2.34",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.11",
"wayofdev/cs-fixer-config": "^1.4"
},
"suggest": {
"ext-simplexml": "to support XML configs parsing"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Internal\\DLoad\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Internal\\DLoad\\Tests\\": "tests/"
}
},
"bin": [
"bin/dload"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1.27"
},
"sort-packages": true
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --configuration=infection.json.dist"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --configuration=infection.json.dist --logger-github --ignore-msi-with-no-mutations --only-covered"
],
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:arch": "pest --color=always --configuration pest.xml.dist",
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=.build/phpunit/logs/clover.xml --color=always"
]
}
}