-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.27 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
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
{
"name": "markrogoyski/itertools-php",
"type": "library",
"description": "Iteration tools for PHP",
"keywords": ["iteration", "iterator", "generator", "loop", "looping", "traversable", "stream", "functional", "zip", "infinite", "random", "accumulate", "itertools"],
"homepage": "https://github.com/markrogoyski/itertools-php/",
"require": {
"php": ">=8.2.0",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": { "IterTools\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"php-coveralls/php-coveralls": "^2.7",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^2.0",
"phpmd/phpmd": "^2.15",
"php-parallel-lint/php-parallel-lint": "^1.4",
"mikey179/vfsstream": "^1.6",
"vimeo/psalm": "^7.0@beta",
"maglnet/composer-require-checker": "^4.17",
"icanhazstring/composer-unused": "^0.9.5"
},
"autoload-dev": {
"psr-4": { "IterTools\\Tests\\": "tests/" }
},
"authors": [
{
"name": "Mark Rogoyski",
"role": "Lead developer",
"email": "mark@rogoyski.com",
"homepage": "https://github.com/markrogoyski"
},
{
"name": "Smoren",
"role": "Developer",
"email": "ofigate@gmail.com",
"homepage": "https://github.com/Smoren"
}
],
"license": "MIT"
}