-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.12 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "benconda/collection",
"type": "library",
"license": "MIT",
"description": "Collection library, powered by generators, with generics, easily extendable and immutable. Lazy by design and memory friendly. Accept anything as iterable \uD83D\uDD25 (Generator, array, Iterator, ...)",
"autoload": {
"psr-4": {
"BenConda\\Collection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BenCondaTest\\Collection\\": "tests/unit"
}
},
"authors": [
{
"name": "Benoit Condaminet",
"email": "benoit@condami.net"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.14",
"symfony/var-dumper": "^6.2"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"check-code-style": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --diff && vendor/bin/phpstan"
}
}