generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.41 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
58
{
"name": "spiral-packages/event-bus",
"description": "A simple observer pattern implementation based on symfony event handler, allowing you to subscribe and listen for various events that occur within your application.",
"keywords": [
"spiral-packages",
"spiral",
"event-bus"
],
"homepage": "https://github.com/spiral-packages/event-bus",
"license": "MIT",
"authors": [
{
"name": "butschster",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"symfony/event-dispatcher": "^6.0",
"spiral/attributes": "^2.9",
"spiral/boot": "^2.9",
"spiral/config": "^2.9",
"spiral/core": "^2.9",
"spiral/hmvc": "^2.9",
"spiral/tokenizer": "^2.9",
"spiral/queue": "^2.9"
},
"require-dev": {
"spiral/testing": "^1.0",
"mockery/mockery": "^1.5",
"vimeo/psalm": "^4.9",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Spiral\\EventBus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\EventBus\\Tests\\App\\": "tests/app",
"Spiral\\EventBus\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}