-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.22 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
{
"name": "texthtml/maybe",
"description": "Option & Result types",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"TH\\Maybe\\": "src/"
},
"files": ["src/functions/option.php", "src/functions/result.php"]
},
"autoload-dev": {
"psr-4": {
"TH\\Maybe\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mathieu Rochette",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^8.0",
"phpstan/phpstan": "^1.4",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"vimeo/psalm": "^5.0",
"symfony/finder": "^6.0|^7.0",
"symfony/console": "^6.0|^7.0",
"texthtml/doctest": "^0.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}