forked from HelgeSverre/toon-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.32 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "helgesverre/toon",
"description": "Token-Oriented Object Notation - A compact data format for reducing token consumption when sending structured data to LLMs",
"type": "library",
"license": "MIT",
"keywords": [
"llm",
"token",
"compression",
"ai",
"format",
"serialization",
"openai",
"anthropic",
"claude",
"gpt",
"laravel",
"optimization",
"prompt",
"cost-reduction"
],
"authors": [
{
"name": "Helge Sverre",
"email": "helge.sverre@gmail.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"laravel/pint": "^1.10",
"phpbench/phpbench": "^1.4"
},
"autoload": {
"psr-4": {
"HelgeSverre\\Toon\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"HelgeSverre\\Toon\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"coverage": "vendor/bin/phpunit --coverage-html coverage",
"coverage:herd": "herd coverage vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/pint src",
"analyse": "phpstan analyse",
"pint": "@format",
"analyze": "@analyse"
}
}