-
Notifications
You must be signed in to change notification settings - Fork 129
/
composer.json
67 lines (67 loc) · 1.89 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
67
{
"name": "bernard/bernard",
"description": "Message queue abstraction layer",
"license": "MIT",
"keywords": [
"message queue",
"message",
"queue",
"bernard"
],
"homepage": "https://github.com/bernardphp/bernard",
"type": "library",
"require": {
"php": ">=8.0",
"beberlei/assert": "^2.1 || ^3.0",
"bernard/normalt": "^1.0",
"symfony/event-dispatcher": "^3.0 || ^4.0"
},
"require-dev": {
"doctrine/dbal": "^2.5",
"doctrine/instantiator": "^1.0.5",
"friends-of-phpspec/phpspec-code-coverage": "^6.0",
"phpspec/phpspec": "^7.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"psr/container": "^1.0",
"psr/log": "^1.0",
"symfony/console": "^3.0 || ^4.0"
},
"suggest": {
"doctrine/dbal": "Allow sending messages to simulated message queue in a database via doctrine dbal",
"mongodb/mongodb": "Allow sending messages to a MongoDB server via PHP Driver"
},
"autoload": {
"psr-4": {
"Bernard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bernard\\Tests\\": "tests/",
"spec\\Bernard\\": "spec/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"clean": "rm -rf build/ vendor/",
"test": [
"vendor/bin/phpspec run",
"vendor/bin/phpunit -v"
],
"test-coverage": [
"vendor/bin/phpspec run -c phpspec.ci.yml",
"vendor/bin/phpunit -v --coverage-text --coverage-clover=build/unit_coverage.xml"
],
"test-functional": "php vendor/bin/phpunit -v --group functional"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}