-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.88 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
59
60
61
62
63
64
65
66
{
"name": "biurad/events-bus",
"type": "library",
"description": "Symfony Event manager for listening and dispatching events",
"keywords": ["events", "event dispatcher","biurad","php7"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "divineibok@gmail.com"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/projects/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/php-events-bus/",
"issues": "https://github.com/biurad/php-events-bus/issues",
"rss": "https://github.com/biurad/php-events-bus/releases.atom",
"source": "https://github.com/biurad/php-events-bus"
},
"require": {
"php": "^7.2 || ^8.0",
"divineniiquaye/php-invoker": "^0.9",
"symfony/event-dispatcher": "^4.4 || ^5.1"
},
"require-dev": {
"composer/package-versions-deprecated": "^1.8",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11 || ^4.0"
},
"autoload": {
"psr-4": {
"Biurad\\Events\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\Events\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}