-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
59 lines (59 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "gowork/values",
"type": "library",
"description": "PHP primitive types value objects.",
"keywords": ["primitive", "type", "value object"],
"license": "MIT",
"authors": [
{
"name": "Damian Zaprzałek",
"email": "[email protected]"
},
{
"name": "Bronisław Białek",
"email": "[email protected]"
},
{
"name": "Dawid Łakomski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^1.0",
"phpbench/phpbench": "@dev",
"phpunit/phpunit": "^9.0",
"phpstan/extension-installer": "^1.0",
"vimeo/psalm": "^4.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"GW\\Value\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\GW\\Value\\": "spec/",
"tests\\GW\\Value\\": "tests/",
"doc\\GW\\Value\\": "examples/"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}