-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.86 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.86 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
63
64
65
66
67
{
"name": "schubertnico/powerdownload",
"description": "PowerDownload - PHP Download Management System",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PowerScripts",
"homepage": "https://www.powerscripts.org"
}
],
"homepage": "https://github.com/schubertnico/PowerDownload",
"require": {
"php": ">=8.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.92",
"infection/infection": "^0.32",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.5"
},
"autoload": {
"classmap": [
"pdl-inc/"
]
},
"autoload-dev": {
"psr-4": {
"PowerDownload\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"infection": "infection --threads=4",
"phpmd": "phpmd . text phpmd.xml --exclude vendor,tests,.docker,logs,tools",
"phpstan": "phpstan analyse --memory-limit=512M",
"psalm": "psalm --no-cache",
"phpunit": "phpunit",
"phpunit:coverage": "phpunit --coverage-xml=logs/coverage-xml --log-junit=logs/junit.xml",
"rector": "rector process --dry-run",
"rector:fix": "rector process",
"lint": "find . -name '*.php' -not -path './vendor/*' -exec php -l {} \\;",
"test": [
"@phpstan",
"@phpunit"
],
"quality": [
"@cs",
"@phpmd",
"@phpstan",
"@psalm"
]
},
"config": {
"platform": {
"php": "8.4"
},
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}