forked from neuron-core/neuron-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.21 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.21 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
{
"name": "neuron-core/neuron-ai",
"description": "The PHP Agentic Framework.",
"minimum-stability": "stable",
"authors": [
{
"name": "Valerio Barbera",
"email": "valerio@inspector.dev"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"inspector-apm/inspector-php": "^3.15.10",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"suggest": {
"aws/aws-sdk-php": "^3.209",
"elasticsearch/elasticsearch": "^7.0|^8.0",
"php-http/curl-client": "^2.3",
"symfony/process": "^4.0|^5.0|^6.0|^7.0",
"spatie/fork": "^1.2",
"typesense/typesense-php": "^5.0"
},
"require-dev": {
"ext-pdo": "*",
"aws/aws-sdk-php": "^3.209",
"elasticsearch/elasticsearch": "^8.0",
"friendsofphp/php-cs-fixer": "^3.75",
"html2text/html2text": "^4.3",
"illuminate/database": "^10.0|^11.0|^12.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.0",
"rector/rector": "^2.0",
"spatie/fork": "^1.2",
"tomasvotruba/type-coverage": "^2.0",
"typesense/typesense-php": "^5.0"
},
"bin": [
"bin/neuron"
],
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse --memory-limit=1G -v"
],
"format": [
"php-cs-fixer fix --allow-risky=yes"
],
"refactor": [
"vendor/bin/rector"
],
"test": [
"vendor/bin/phpunit --colors=always"
]
},
"scripts-descriptions": {
"analyse": "Run PHPStan static analysis against your application.",
"format": "Run PHP CS Fixer against your application.",
"refactor": "Run rector for code refactoring.",
"test": "Run PHPUnit to test"
},
"autoload": {
"psr-4": {
"NeuronAI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NeuronAI\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
},
"process-timeout": 600
}
}