-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 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
{
"name": "ebln/phpstan-factory-mark",
"description": "Userland marking interface for ebln/phpstan-factory-rule",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "ebln",
"email": "34722048+ebln@users.noreply.github.com"
}
],
"require": {
"php": "7.4 - 8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"phpstan/phpstan": "^1.1"
},
"autoload": {
"psr-4": {
"Ebln\\PHPStan\\EnforceFactory\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"quality": [
"composer normalize --dry-run",
"phpstan analyse",
"@style-check"
],
"style-check": "php-cs-fixer fix -v --config=.php-cs-fixer.dist.php --using-cache=no --dry-run",
"style-fix": "php-cs-fixer fix -v --config=.php-cs-fixer.dist.php --using-cache=no"
}
}