-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
58 lines (58 loc) · 1.4 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
{
"name": "ekino/phpstan-banned-code",
"description": "Detected banned code using PHPStan",
"license": "MIT",
"type": "phpstan-extension",
"keywords": [
"PHPStan",
"Code Quality",
"static analysis"
],
"authors": [
{
"name": "Rémi Marseille",
"email": "[email protected]",
"homepage": "https://www.ekino.com"
}
],
"homepage": "https://github.com/ekino/phpstan-banned-code",
"require": {
"php": "^8.1",
"phpstan/phpstan": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.6",
"friendsofphp/php-cs-fixer": "^3.0",
"nikic/php-parser": "^4.3",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ekino\\PHPStanBannedCode\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Ekino\\PHPStanBannedCode\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}