-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (37 loc) · 837 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
{
"name": "dynamophp/vector-clock",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Baptiste CONTRERAS"
}
],
"autoload": {
"psr-4": {
"Dynamophp\\VectorClock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dynamophp\\VectorClock\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-symfony": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"spaze/phpstan-disallowed-calls": "^2.10",
"friendsofphp/php-cs-fixer": "^3.13",
"phpbench/phpbench": "^1.2"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}