-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.32 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "texthtml/maybe",
"description": "Option & Result types",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"TH\\Maybe\\": "src/"
},
"files": ["src/functions/internal.php", "src/functions/option.php", "src/functions/result.php"]
},
"autoload-dev": {
"psr-4": {
"TH\\Maybe\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mathieu Rochette",
"email": "mathieu@texthtml.net"
}
],
"require": {
"php": "^8.1",
"texthtml/object-reaper": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0|^12.0|^13.0",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^4.0",
"slevomat/coding-standard": "^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"vimeo/psalm": "^6.0",
"symfony/finder": "^6.0|^7.0|^8.0",
"symfony/console": "^6.0|^7.0|^8.0",
"texthtml/doctest": "^0.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}