-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.19 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "wiz-develop/php-value-object",
"description": "📦 The PHP Value Object library offers immutable, type-safe, and self-validating objects to model domain values using the Value Object pattern.",
"require": {
"php": ">=8.4",
"wiz-develop/php-monad": "^2.6"
},
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"WizDevelop\\PhpValueObject\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WizDevelop\\PhpValueObject\\Examples\\": "examples",
"WizDevelop\\PhpValueObject\\Tests\\": "tests"
}
},
"authors": [
{
"name": "kakiuchi-shigenao",
"email": "87973394+endou-mame@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"wiz-develop/php-cs-fixer-config": "^8.4",
"phpunit/php-code-coverage": "^11.0",
"phpunit/phpunit": "^11.3",
"phpstan/phpstan": "^2.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^2.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}