-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
68 lines (68 loc) · 1.87 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
{
"name": "loophp/iterators",
"description": "The missing PHP iterators.",
"license": "MIT",
"type": "library",
"keywords": [
"iterators"
],
"readme": "README.md",
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]",
"homepage": "https://not-a-number.io",
"role": "author"
}
],
"homepage": "https://github.com/loophp/iterators",
"support": {
"issues": "https://github.com/loophp/iterators/issues",
"source": "https://github.com/loophp/iterators"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.1"
},
"require-dev": {
"ext-pcov": "*",
"drupol/php-conventions": "^6",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/php-code-coverage": "^11",
"phpunit/phpunit": "^11"
},
"suggest": {
"ext-mbstring": "For UTF-8 support in the StringIteratorAggregate."
},
"autoload": {
"psr-4": {
"loophp\\iterators\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"benchmarks\\loophp\\iterators\\": "./tests/benchmarks/",
"tests\\loophp\\iterators\\": "./tests/unit/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run"
}
}