-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
56 lines (56 loc) · 1.36 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
{
"name": "phpfn/pipe",
"type": "library",
"description": "Library for implementing function call chains",
"license": "MIT",
"keywords": ["pipe", "functional", "high order", "curry", "partial application"],
"homepage": "https://github.com/phpfn",
"support": {
"issues": "https://github.com/phpfn/phpfn/issues",
"source": "https://github.com/phpfn/pipe"
},
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "nesk@xakep.ru"
}
],
"require": {
"php": ">=7.4",
"symfony/polyfill-php80": "^1.0",
"phpfn/placeholder": "^2.1"
},
"autoload": {
"psr-4": {
"Fun\\Pipe\\": "src"
},
"files": [
"src/polyfill.php",
"src/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"laminas/laminas-code": "~3.4",
"symfony/console": "~4.3|~5.0",
"symfony/var-dumper": "~4.3|~5.0"
},
"autoload-dev": {
"psr-4": {
"Fun\\Pipe\\Tests\\": "tests"
},
"files": [
"tests/stubs/functions.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}