This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
103 lines (103 loc) · 3.06 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
100
101
102
103
{
"name": "alexeyshockov/colada",
"type": "library",
"description": "Collections framework for PHP",
"keywords": [
"collections",
"iterators",
"generators",
"promises",
"async",
"guzzle",
"react"
],
"homepage": "http://github.com/alexeyshockov/colada",
"license": "MIT",
"authors": [
{
"name": "Alexey Shokov",
"email": "alexey@shockov.com",
"homepage": "http://alexey.shockov.com/"
},
{
"name": "Semen Barabash",
"email": "semen.barabash@gmail.com"
}
],
"require": {
"php": "~7.1",
"symfony/polyfill-php72": "@stable",
"symfony/polyfill-php73": "@stable"
},
"require-dev": {
"danielstjules/stringy": "~2.1 || ~3.0",
"giorgiosironi/eris": "^0.11.0",
"guzzlehttp/guzzle": "~6.3 || ~7.0@dev",
"lstrojny/functional-php": "~1.4",
"nesbot/carbon": "~2.0",
"nikic/iter": "~1.6 || ~2.0",
"php-ds/php-ds": "~1.0",
"phpoption/phpoption": "~1.5",
"phpunit/phpunit": "~7.0",
"react/dns": "@stable",
"react/partial": "~3.0",
"react/promise": "@stable",
"squizlabs/php_codesniffer": "~3.0",
"symfony/stopwatch": "~3.0 || ~4.0"
},
"suggest": {
"alexeyshockov/colada-x": "A small helper function to write closures faster (for PHP < 7.4)",
"danielstjules/stringy": "Convenient string manipulations",
"guzzlehttp/guzzle": "The most popular library for HTTP interactions",
"lstrojny/functional-php": "Some functional primitives",
"nesbot/carbon": "Convenient date and time manipulations",
"nikic/iter": "Basic helper functions to work with collections (generators)",
"php-ds/php-ds": "Effective data structures for PHP (\\Colada\\iter\\ds)",
"phpoption/phpoption": "Optional values for PHP (\\Colada\\iter\\opt)",
"react/partial": "Partial functions",
"symfony/stopwatch": "Timing related stuff (\\Colada\\iter\\sw)"
},
"config": {
"platform": {
"php": "7.1.8"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Colada\\": "src/"
},
"files": [
"src/ds.php",
"src/functions.php",
"src/gen.guzzle.php",
"src/gen.react.php",
"src/iter.opt.php",
"src/iter.pcntl.php",
"src/iter.php"
]
},
"autoload-dev": {
"psr-4": {
"Colada\\Tests\\": "tests/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"scripts": {
"check-style": "vendor/bin/phpcs --standard=PSR2 src",
"ci": [
"@check-style",
"@test"
],
"test": "vendor/bin/phpunit --testdox"
},
"support": {
"issues": "https://github.com/alexeyshockov/colada/issues"
}
}