-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.13 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "phunkie/phpstan",
"description": "PHPStan extensions for Phunkie functional programming library",
"type": "phpstan-extension",
"license": "MIT",
"authors": [
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4",
"phpstan/phpstan": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11",
"phunkie/phunkie": "dev-developing-1.0.0 as 1.0.0",
"phunkie/effect": "dev-developing-1.0.0 as 1.0.0"
},
"autoload": {
"psr-4": {
"Phunkie\\PHPStan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phunkie\\PHPStan\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../phunkie"
},
{
"type": "path",
"url": "../effect"
}
],
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}