-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.67 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.67 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
{
"name": "thgs/functional",
"description": "a functional experiment",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^2.1",
"phpbench/phpbench": "^1.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"thgs\\Functional\\": "src/"
},
"files": [
"src/assert.php",
"src/constructors.php",
"src/exception.php",
"src/functions.php",
"src/io.php",
"src/iteration.php",
"src/json.php",
"src/methods.php",
"src/partial.php",
"src/reflection.php"
]
},
"authors": [
{
"name": "thgs",
"email": "theogpl57@gmail.com"
}
],
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse src -c phpstan.neon",
"phpstan-types": "./vendor/bin/phpstan analyse tests/Phpstan -c phpstan.neon",
"test": "./vendor/bin/phpunit tests --testdox --display-deprecations",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --no-progress --coverage-text --strict-coverage --path-coverage",
"coverage-no-path": "XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --no-progress --coverage-text --strict-coverage",
"coverage-html": "XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --no-progress --coverage-html coverage --strict-coverage --path-coverage",
"coverage-no-path-html": "XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --no-progress --coverage-html coverage --strict-coverage",
"bench": "./vendor/bin/phpbench run tests/Benchmark --report=aggregate"
}
}