-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.77 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.77 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
{
"name": "neuron-core/graph-retrieval",
"description": "Neuron AI retrieval component augmented with structured information from a knowledge graph database.",
"minimum-stability": "stable",
"authors": [
{
"name": "Valerio Barbera",
"email": "valerio@inspector.dev"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"neuron-core/neuron-ai": "3.x-dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.0",
"rector/rector": "^2.0",
"tomasvotruba/type-coverage": "^2.0"
},
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse --memory-limit=1G -v"
],
"style": [
"php-cs-fixer fix --allow-risky=yes"
],
"rector": [
"vendor/bin/rector"
],
"format": [
"php-cs-fixer fix --allow-risky=yes",
"vendor/bin/rector"
],
"test": [
"vendor/bin/phpunit --colors=always"
]
},
"scripts-descriptions": {
"analyse": "Run PHPStan static analysis against your application.",
"style": "Run PHP CS Fixer against your application.",
"rector": "Run rector for code refactoring.",
"format": "Pipeline of style and format commands.",
"test": "Run PHPUnit to test"
},
"autoload": {
"psr-4": {
"NeuronCore\\GraphRetrieval\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NeuronCore\\GraphRetrieval\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
},
"process-timeout": 600
}
}