-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.69 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "neuron-core/php-vector",
"description": "Conversational Data Collection.",
"minimum-stability": "stable",
"authors": [
{
"name": "Valerio Barbera",
"email": "valerio@inspector.dev"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"ezimuel/phpvector": "^0.2.0",
"neuron-core/neuron-ai": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2.0",
"tomasvotruba/type-coverage": "^2.0"
},
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse --memory-limit=1G -v"
],
"format": [
"@refactor",
"@style"
],
"style": [
"php-cs-fixer fix --allow-risky=yes"
],
"refactor": [
"vendor/bin/rector"
],
"test": [
"vendor/bin/phpunit --colors=always"
]
},
"scripts-descriptions": {
"analyse": "Run PHPStan static analysis.",
"format": "Run PHP CS Fixer and PHPStan in a pipeline.",
"style": "Run PHP CS Fixer to fix coding style issues.",
"refactor": "Run rector for code refactoring.",
"test": "Run PHPUnit to test"
},
"autoload": {
"psr-4": {
"NeuronAI\\PHPVector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NeuronAI\\PHPVector\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
},
"process-timeout": 600
}
}