-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
56 lines (56 loc) · 1.67 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
{
"name": "adrienbrault/instructrice",
"description": "Typed LLM Outputs in PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Adrien Brault",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"adrienbrault/partial-json": "^1.2",
"api-platform/json-schema": "^3.0",
"azjezz/psl": "^2.0",
"gioni06/gpt3-tokenizer": "^1.0",
"guzzlehttp/guzzle": "^7.0",
"nesbot/carbon": "^2 || ^3",
"phpdocumentor/reflection-docblock": "^5.0",
"phpdocumentor/type-resolver": "^1.0",
"symfony/property-access": "^6.0 || ^7.0",
"symfony/property-info": "^6.0 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"goldspecdigital/oooas": "^2.10",
"monolog/monolog": "^3.0",
"php-standard-library/phpstan-extension": "^1.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.0 || ^11.0",
"rector/rector": "^1.0",
"symfony/console": "^6.0 || 7.0",
"symfony/http-client": "^6.0 || ^7.0",
"symfony/monolog-bridge": "^6.0 || ^7.0",
"symfony/var-dumper": "^6.0 || ^7.0",
"symplify/easy-coding-standard": "*"
},
"autoload": {
"psr-4": {
"AdrienBrault\\Instructrice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AdrienBrault\\Instructrice\\Tests\\": "tests/",
"Examples\\": "examples/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}