-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.3 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "wwwision/subscription-engine",
"description": "Subscription engine for event-sourced systems",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Bastian Waidelich",
"email": "b.waidelich@wwwision.de"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bwaidelich"
},
{
"type": "paypal",
"url": "https://www.paypal.me/bwaidelich"
}
],
"require": {
"php": ">=8.3",
"psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^2",
"squizlabs/php_codesniffer": "^4.0.x-dev",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Wwwision\\SubscriptionEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wwwision\\SubscriptionEngine\\Tests\\": "tests/"
}
},
"scripts": {
"test:phpstan": "phpstan",
"test:cs": "phpcs --colors src",
"test:cs:fix": "phpcbf --colors src",
"test:phpunit": "phpunit",
"test": [
"@test:phpstan",
"@test:cs",
"@test:phpunit"
]
}
}