-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.24 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": "icanboogie/message-bus",
"type": "library",
"description": "A straightforward implementation of a message dispatcher",
"keywords": [
"message",
"dispatcher",
"bus"
],
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "olivier.laviale@gmail.com",
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/MessageBus/issues",
"source": "https://github.com/ICanBoogie/MessageBus"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"olvlvl/composer-attribute-collector": true
}
},
"prefer-stable": true,
"prefer-dist": true,
"require": {
"php": ">=8.0.2"
},
"require-dev": {
"olvlvl/composer-attribute-collector": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"psr/container": "^1.0|^2.0",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/yaml": "^6.0"
},
"autoload": {
"psr-4": {
"ICanBoogie\\MessageBus\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"ICanBoogie\\MessageBus\\": "tests",
"Acme\\": "tests/Acme"
}
}
}