-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.39 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "iterator-tools/pipeline",
"description": "Tools to work with iterators including lazy evaluation",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Mateusz Kołecki",
"email": "kolecki.mateusz@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/polyfill-php80": "^1.23",
"symfony/polyfill-php81": "^1.23"
},
"require-dev": {
"ext-pcntl": "*",
"ext-posix": "*",
"ext-sockets": "*",
"friendsofphp/php-cs-fixer": "^3.13.1",
"infection/infection": "^0.26.6",
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
"IteratorTools\\": "src/"
},
"files": [
"src/Iterator/functions.php",
"src/Consumers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"IteratorTools\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"post-update-cmd": "./install-git-hooks",
"unit-tests": "phpunit --color --testdox",
"coding-standards": "php-cs-fixer fix --diff --allow-risky=yes --dry-run",
"coding-standards-fix": "php-cs-fixer fix --diff --allow-risky=yes",
"static-analysis": "psalm --no-cache",
"mutation-tests": "infection -j4 --ansi --show-mutations --no-interaction"
}
}