-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
99 lines (99 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "prooph/http-middleware",
"description": "http middleware for prooph components",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://prooph-software.com/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sandro Keil",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
},
{
"name": "Bas Kamer",
"email": "[email protected]"
}
],
"keywords": [
"prooph",
"psr-7",
"psr-15",
"middleware",
"cqrs",
"service bus",
"event sourcing",
"messaging",
"psr7",
"psr15"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"prooph/common": "^4.1",
"prooph/service-bus": "^6.0",
"psr/http-message": "^1.0",
"react/promise": "^2.2",
"fig/http-message-util": "^1.1",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"prooph/bookdown-template": "^0.2.3",
"prooph/php-cs-fixer-config": "^0.5",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^2.0.1",
"sebastian/comparator": "^4.0",
"laminas/laminas-servicemanager": "^3.1"
},
"suggest": {
"psr/container": "^1.0 for usage of provided factories",
"sandrokeil/interop-config": "^2.0 for usage of provided factories"
},
"conflict": {
"sandrokeil/interop-config": "<2.0.1"
},
"autoload": {
"psr-4": {
"Prooph\\HttpMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\HttpMiddleware\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.5-dev"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"coveralls": "coveralls",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"check-license": "docheader check src/ tests/",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover build/logs/clover.xml",
"docs": "bookdown docs/bookdown.json"
},
"config": {
"sort-packages": true
}
}