-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.25 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": "hereldar/results",
"type": "library",
"description": "Allows developers to handle the results in any way they choose.",
"keywords": ["result", "result type", "error handling"],
"license": "MIT",
"support": {
"issues": "https://github.com/hereldar/php-results/issues",
"source": "https://github.com/hereldar/php-results"
},
"authors": [
{
"name": "Samuel Maudo",
"email": "samuelmaudo@gmail.com",
"homepage": "https://github.com/samuelmaudo"
}
],
"require": {
"php": "^8.1.17|^8.2.4|^8.3.0"
},
"require-dev": {
"hereldar/coding-style": "^0.1.2",
"hereldar/faker-helper": "^0.1.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.23.0"
},
"autoload": {
"psr-4": {
"Hereldar\\Results\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hereldar\\Results\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}