-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.07 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
{
"name": "semji/gpt-3-tokenizer-php",
"description": "PHP Text Tokenizer for GPT models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Semji",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Semji\\GPT3Tokenizer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.2",
"rector/rector": "^0.15.12",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.14"
},
"scripts": {
"test:analyze": "phpstan analyse src",
"test:lint": "php-cs-fixer fix",
"test:refactor": "rector",
"test:unit": "phpunit tests",
"tests": [
"@test:analyze",
"@test:lint",
"@test:refactor",
"@test:unit"
]
}
}