-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.43 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "thenativeweb/eventsourcingdb",
"description": "The official PHP client SDK for EventSourcingDB.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Thenativeweb\\Eventsourcingdb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thenativeweb\\Eventsourcingdb\\Tests\\": "tests/"
},
"files": [
"tests/Fn/getImageVersionFromDockerfile.php"
]
},
"authors": [
{
"name": "the native web GmbH",
"email": "hello@thenativeweb.io"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-openssl": "*",
"ext-sodium": "*",
"testcontainers/testcontainers": "1.0.8"
},
"require-dev": {
"phpstan/phpstan": "2.1.50",
"phpunit/phpunit": "11.5.50",
"rector/rector": "2.4.1",
"symplify/easy-coding-standard": "13.0.4"
},
"scripts": {
"analyze": [
"vendor/bin/rector process --dry-run --ansi",
"vendor/bin/ecs check",
"@stan"
],
"format": [
"vendor/bin/rector process",
"vendor/bin/ecs check --fix"
],
"stan": "vendor/bin/phpstan analyze --memory-limit 512M",
"qa": [
"@analyze",
"@test"
],
"test": [
"vendor/bin/phpunit --testsuite \"HttpClient\"",
"vendor/bin/phpunit --testsuite \"EsdbClient\""
]
},
"config": {
"allow-plugins": {
"php-http/discovery": false
},
"sort-packages": true
}
}