-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 844 Bytes
/
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
{
"name": "adrienbrault/instructrice-bundle",
"description": "Typed LLM Outputs with Symfony",
"license": "MIT",
"authors": [
{
"name": "Adrien Brault",
"email": "adrien.brault@gmail.com"
}
],
"require": {
"adrienbrault/instructrice": "*",
"symfony/framework-bundle": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "*",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"AdrienBrault\\InstructriceBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}