-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.34 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
{
"name": "wwwision/dcb-example-courses",
"description": "Simple example for the Dynamic Consistency Boundary pattern described by Sara Pellegrini",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Bastian Waidelich",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bwaidelich"
},
{
"type": "paypal",
"url": "https://www.paypal.me/bwaidelich"
}
],
"require": {
"php": ">=8.4",
"webmozart/assert": "^1.11",
"wwwision/dcb-eventstore": "^4",
"wwwision/dcb-eventstore-doctrine": "^4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^2",
"squizlabs/php_codesniffer": "^4.0.x-dev",
"phpunit/phpunit": "^11",
"behat/behat": "^3"
},
"autoload": {
"psr-4": {
"Wwwision\\DCBExample\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wwwision\\DCBExample\\Tests\\": "tests/"
}
},
"scripts": {
"test:phpstan": "phpstan",
"test:cs": "phpcs --colors --standard=PSR12 --exclude=Generic.Files.LineLength src",
"test:cs:fix": "phpcbf --colors --standard=PSR12 --exclude=Generic.Files.LineLength src",
"test:behat": "behat",
"test": [
"@test:phpstan",
"@test:cs",
"@test:behat"
]
}
}