-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.11 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": "jpcaparas/laravel-llamaparse-client",
"description": "A Laravel library for interacting with Llamaparse Cloud API to parse PDF, XLS, and other file types into more efficient RAG context.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "JPCaparas",
"email": "jp@jpcaparas.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.19",
"orchestra/testbench": "*"
},
"autoload": {
"psr-4": {
"JPCaparas\\LLamaparse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JPCaparas\\LLamaparse\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"JPCaparas\\LLamaparse\\LLamaparseServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"tinker": "testbench tinker",
"format": "pint"
}
}