-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
84 lines (84 loc) · 2.48 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
{
"name": "loophp/collection",
"description": "A (memory) friendly, easy, lazy and modular collection class.",
"license": "MIT",
"type": "library",
"keywords": [
"collection",
"generator",
"iterator",
"yield"
],
"readme": "README.md",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com",
"homepage": "https://not-a-number.io",
"role": "author"
},
{
"name": "Alex Gidei",
"homepage": "https://github.com/AlexandruGG",
"role": "maintainer"
}
],
"homepage": "https://github.com/loophp/collection",
"support": {
"issues": "https://github.com/loophp/collection/issues",
"source": "https://github.com/loophp/collection",
"docs": "https://loophp-collection.rtfd.io"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.1",
"loophp/iterators": "^3.2.0"
},
"require-dev": {
"ext-pcov": "*",
"amphp/parallel-functions": "^1",
"doctrine/collections": "^2",
"drupol/php-conventions": "^6",
"infection/infection": "^0.27 || ^0.28 || ^0.29",
"loophp/phpunit-iterable-assertions": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/php-code-coverage": "^10",
"phpunit/phpunit": "^10",
"psr/cache": "^2.0 || 3.0",
"symfony/cache": "^6",
"vimeo/psalm": "^5"
},
"autoload": {
"psr-4": {
"loophp\\collection\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\loophp\\collection\\": "./tests/unit/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": 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",
"doc-server": "sphinx-autobuild ./docs ./build/docs",
"grumphp": "./vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2",
"phpunit": "vendor/bin/phpunit"
}
}