forked from Gioni06/GPT3Tokenizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 898 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 898 Bytes
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
{
"name": "gioni06/gpt3-tokenizer",
"description": "PHP package for Byte Pair Encoding (BPE) used by GPT-3.",
"keywords": ["gpt-3", "openai", "gpt-2", "tokenizer", "encode", "decode"],
"license": "Apache-2.0",
"homepage": "https://github.com/Gioni06/GPT3Tokenizer",
"support": {
"issues": "https://github.com/Gioni06/GPT3Tokenizer/issues",
"source": "https://github.com/Gioni06/GPT3Tokenizer"
},
"scripts": {
"test": "vendor/bin/phpunit -d memory_limit=-1 tests"
},
"authors": [
{
"name": "Jonas Duri",
"email": "jonas.duri@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
"psr-4": {
"Gioni06\\Gpt3Tokenizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gioni06\\Gpt3Tokenizer\\Tests\\": "tests/"
}
}
}