-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 802 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 802 Bytes
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
{
"name": "rector/dependency-audit",
"description": "Audit your composer dependencies for their code quality they provide",
"license": "proprietary",
"require": {
"php": "^8.2",
"symfony/console": "^6.4",
"symfony/process": "^7.3",
"illuminate/container": "^12.39",
"nette/utils": "^4.0",
"webmozart/assert": "^1.12",
"composer/semver": "^3.4"
},
"require-dev": {
"tracy/tracy": "^2.11",
"phpecs/phpecs": "^2.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.4"
},
"autoload": {
"psr-4": {
"Rector\\DependencyAudit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\DependencyAudit\\Tests\\": "tests"
}
}
}