-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.34 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.34 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cortexphp/cortex",
"description": "AI Framework for Laravel",
"keywords": [
"cortex",
"ai"
],
"homepage": "https://github.com/cortexphp/cortex",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sean Tymon",
"email": "tymon148@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"adhocore/json-fixer": "^1.0",
"cortexphp/json-schema": "^0.5 || ^0.6",
"cortexphp/model-info": "^0.3",
"illuminate/collections": "^11.23",
"mozex/anthropic-php": "^1.1",
"openai-php/client": "^0.13",
"psr-discovery/cache-implementations": "^1.2",
"psr-discovery/event-dispatcher-implementations": "^1.1",
"react/async": "^4.3",
"spatie/laravel-package-tools": "^1.17"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"hkulekci/qdrant": "^0.5.8",
"league/event": "^3.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.8",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.4",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"symplify/easy-coding-standard": "^12.5"
},
"autoload": {
"psr-4": {
"Cortex\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Cortex\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"ecs": "ecs check --fix",
"rector": "rector process",
"stan": "phpstan analyse",
"type-coverage": "pest --type-coverage --min=100",
"format": [
"@rector",
"@ecs"
],
"check": [
"@format",
"@test",
"@stan",
"@type-coverage"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"extra" : {
"laravel" : {
"providers" : [
"Cortex\\CortexServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}