-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·51 lines (39 loc) · 991 Bytes
/
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
{
"name": "germania-kg/filteriterators",
"description": "FilterIterators for two-dimensional Traversables",
"keywords": [ "Filter", "Iterator", "Traversables" ],
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Germania\\FilterIterators\\": "src"
}
},
"autoload-dev": {
"psr-4": { "tests\\": "tests/src" }
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"phpcs": "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs:apply": "php-cs-fixer fix --verbose --diff src/",
"phpstan": "phpstan analyse --configuration phpstan.neon",
"phpunit" : "phpunit --testdox",
"test": [
"@phpunit"
]
}
}