This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.18 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
{
"name": "scienide/helix",
"type": "library",
"description": "A library for counting short DNA sequences for use in Bioinformatics.",
"license": "MIT",
"readme": "README.md",
"keywords": [
"gene sequences", "k-mer counting", "k-mer", "bloom filter", "bioinformatics", "fasta",
"fastq", "illumina", "metagenomics", "computational genomics"
],
"authors": [
{
"name": "Andrew DalPino",
"role": "Lead Developer",
"homepage": "https://github.com/andrewdalpino",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"scienide/okbloomer": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.88",
"phpunit/phpunit": "^9.5",
"phpbench/phpbench": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Helix\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Hexlix\\Benchmarks\\": "benchmarks/",
"Helix\\Tests\\": "tests/"
}
},
"scripts": {
"analyze": "phpstan analyse -c phpstan.neon",
"benchmark": "phpbench run --report=aggregate",
"build": [
"@composer install",
"@analyze",
"@test",
"@check"
],
"check": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix --config=.php_cs.dist.php -v --dry-run --using-cache=no"
],
"fix": "php-cs-fixer fix --config=.php_cs.dist.php",
"test": "phpunit"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/andrewdalpino"
}
],
"support": {
"docs": "https://github.com/Scien-ide/Helix/README.md",
"issues": "https://github.com/Scien-ide/Helix/issues",
"source": "https://github.com/Scien-ide/Helix",
"email": "[email protected]"
},
"minimum-stability": "dev",
"prefer-stable": true
}