-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 1.27 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
{
"name": "streak/streak",
"type": "library",
"description": "",
"keywords": ["es","cqrs","event sourcing", "command query responsibility segregation", "command", "command bus", "event"],
"homepage": "https://streakphp.com",
"license": "MIT",
"authors": [
{
"name": "Alan Gabriel Bem",
"email": "[email protected]",
"homepage": "https://github.com/alanbem"
}
],
"autoload": {
"psr-4": {
"Streak\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Streak\\": "tests/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"ext-igbinary": "*",
"ext-redis": "*",
"ext-json": "*",
"doctrine/dbal": "^2.13",
"psr/log": "^1.1",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.0",
"php-amqplib/rabbitmq-bundle": "^2.6.0",
"phpunit/phpunit": "^9.5.4",
"rector/rector": "0.12.18",
"qossmic/deptrac-shim": "^0.13.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}