-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 970 Bytes
/
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
{
"name": "bosunski/results",
"description": "Rust-like Result/Option utility for PHP",
"keywords": [
"rust",
"result",
"php",
"error",
"exception"
],
"license": "MIT",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-webmozart-assert": "^1.2",
"laravel/pint": "^1.13",
"pestphp/pest": "^2.26"
},
"autoload": {
"psr-4": {
"Bosunski\\Results\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Bosunski\\Results\\Tests\\": "tests/"
}
},
"scripts": {
"style": "vendor/bin/pint",
"test": "vendor/bin/pest",
"analyze": "vendor/bin/phpstan analyse src"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}