-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 2.31 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
{
"name": "phonyland/ngram",
"description": "\ud83e\uddea N-Gram Tools for \ud83d\ude43 Phony Language Models with sanitizing, tokenization, n-gram extraction, frequency mapping",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Yunus Emre Delig\u00f6z",
"email": "ye@deligoz.me"
}
],
"homepage": "http://phony.land",
"require": {
"php": "^8.2"
},
"require-dev": {
"phonyland/dev-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phonyland\\NGram\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phonyland\\NGram\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phonyland/dev-tools": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction"
],
"coverage": "vendor/bin/pest --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"coveragep": "vendor/bin/pest --parallel --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"infection": "vendor/bin/infection --test-framework=pest --show-mutations --threads=max --min-msi=100 --min-covered-msi=100 --ansi",
"lintc": "vendor/bin/pint && (git diff-index --quiet HEAD || (git add . && git commit -m 'chore: Fix styling'))",
"pest": "vendor/bin/pest --colors=always --order-by=random --configuration=phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"profile": "vendor/bin/pest --profile --colors=always --order-by=random --configuration=phpunit.xml.dist",
"test": "@pest",
"testp": "vendor/bin/pest --parallel --colors=always --order-by=random --configuration=phpunit.xml.dist",
"type": "vendor/bin/pest --type-coverage --colors=always --order-by=random --configuration=phpunit.xml.dist"
}
}