-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
40 lines (40 loc) · 929 Bytes
/
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
{
"name": "league/pipeline",
"description": "A plug and play pipeline implementation.",
"keywords": [
"pipeline", "pattern", "sequential", "composition", "design pattern"
],
"license": "MIT",
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Woody Gilk",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"League\\Pipeline\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Pipeline\\Stub\\": "stub"
}
},
"require": {
"php": ">=7.1"
},
"scripts": {
"test": "phpspec run"
},
"require-dev": {
"phpspec/phpspec": ">=4.3",
"friends-of-phpspec/phpspec-code-coverage": ">=4.3"
}
}