-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
42 lines (42 loc) · 1.17 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
{
"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": ">=7.4.0"
},
"autoload": {
"psr-4": { "IterTools\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.11",
"phpmd/phpmd": "^2.10",
"phploc/phploc": "*",
"php-parallel-lint/php-parallel-lint": "^1.3",
"mikey179/vfsstream": "^1.6"
},
"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"
}