forked from bartosz-maciaszek/chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.13 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
{
"name": "bartosz-maciaszek/chain",
"description": "Actions chaining made easy for PHP7",
"license": "MIT",
"type": "library",
"keywords": [
"chain", "chain or responsibility", "middleware"
],
"authors": [
{
"name": "Bartosz Maciaszek",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/bartosz-maciaszek/chain/issues"
},
"autoload": {
"psr-4": {
"BM\\Chain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BM\\ChainTests\\Traits\\": "tests/traits/",
"BM\\ChainTests\\Fixtures\\": "tests/fixtures/",
"BM\\ChainTests\\": "tests/unit/"
}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4",
"phpunit/phpcov": "~3.1",
"phpspec/phpspec": "~2.5",
"henrikbjorn/phpspec-code-coverage": "dev-feature/code-coverage-ver-4",
"mockery/mockery": "~1.0@dev",
"squizlabs/php_codesniffer": "~2.6",
"phpmd/phpmd" : "~2.4",
"phpspec/prophecy": "~1.6@dev"
},
"repositories": [
{"type": "vcs", "url": "https://github.com/michaldudek/PhpSpecCodeCoverageExtension.git"}
]
}