-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.88 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.88 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
51
52
53
54
{
"name": "monadial/phpurr",
"description": "A typesafe functional programming library for PHP — port of Typelevel Cats",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.5"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.0",
"behat/behat": "^3.0"
},
"autoload": {
"psr-4": {
"Phpurr\\Cats\\": "src/Phpurr/Cats/",
"Phpurr\\CatsEffect\\": "src/Phpurr/CatsEffect/"
},
"files": [
"src/Phpurr/Cats/Syntax/functions.php",
"src/Phpurr/Cats/Syntax/FunctorSyntax.php",
"src/Phpurr/Cats/Syntax/MonadSyntax.php",
"src/Phpurr/Cats/Syntax/ApplicativeSyntax.php",
"src/Phpurr/Cats/Syntax/FoldableSyntax.php",
"src/Phpurr/Cats/Syntax/ComposeSyntax.php",
"src/Phpurr/Cats/Syntax/EqSyntax.php",
"src/Phpurr/Cats/Syntax/ShowSyntax.php",
"src/Phpurr/Cats/Syntax/DoNotation.php",
"src/Phpurr/Cats/Syntax/Memoize.php",
"src/Phpurr/Cats/Syntax/MapN.php",
"src/Phpurr/Cats/Syntax/PipeSyntax.php",
"src/Phpurr/Cats/Syntax/BifunctorSyntax.php",
"src/Phpurr/Cats/Syntax/SemigroupKSyntax.php",
"src/Phpurr/Cats/Syntax/TraverseSyntax.php",
"src/Phpurr/Cats/init.php",
"src/Phpurr/CatsEffect/Syntax/IOSyntax.php"
]
},
"autoload-dev": {
"psr-4": {
"Phpurr\\Cats\\Tests\\": "tests/",
"Phpurr\\CatsEffect\\Tests\\": "tests/CatsEffect/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}