-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.42 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": "qubus/event-dispatcher",
"description": "A framework agnostic Event Dispatcher similar to the one found in Symfony.",
"keywords": [
"event",
"event dispatcher",
"emitter",
"listener",
"subscriber",
"observer pattern"
],
"homepage": "https://github.com/QubusPHP/event-dispatcher",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joshua Parker",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"psr/event-dispatcher": "^1.0",
"qubus/exception": "^3.0",
"qubus/inheritance": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^9.0",
"qubus/qubus-coding-standard": "^1.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Qubus\\EventDispatcher\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Qubus\\Tests\\EventDispatcher\\": "Tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}