-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.11 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "wiz-develop/php-monad",
"description": "📦 Implemented the concept of monads in functional programming in PHP.",
"require": {
"php": ">=8.3"
},
"type": "library",
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"WizDevelop\\PhpMonad\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WizDevelop\\PhpMonad\\Tests\\": "tests"
}
},
"authors": [
{
"name": "kakiuchi-shigenao",
"email": "87973394+endou-mame@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"wiz-develop/php-cs-fixer-config": "^8.4",
"phpstan/phpstan": "^1.12",
"phpunit/php-code-coverage": "^11.0",
"phpunit/phpunit": "^11.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"jiripudil/phpstan-sealed-classes": "^1.2"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}