-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "league/construct-finder",
"description": "Finds classes, interfaces, traits, and enums.",
"type": "library",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~7.4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"League\\ConstructFinder\\": "src/"
}
},
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "phpstan analyse -l max -c phpstan.neon.dist src --ansi --memory-limit=192M",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit",
"@phpstan"
]
},
"scripts-descriptions": {
"phpstan": "Runs complete codebase static analysis",
"phpunit": "Runs unit and functional testing",
"test": "Runs full test suite"
}
}