-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 3.26 KB
/
composer.json
File metadata and controls
100 lines (100 loc) · 3.26 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
91
92
93
94
95
96
97
98
99
100
{
"name": "code-rhapsodie/connector-gemini",
"description": "Connector for Google Gemini in Ibexa",
"license": "MIT",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp", "ibexa", "ia", "gemini", "ai"
],
"authors": [
{
"name": "Loïc A.",
"email": "loic@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Jean-Baptiste Nahan",
"email": "jean-baptiste@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Code Rhapsodie",
"homepage": "https://www.code-rhapsodie.fr/"
}
],
"repositories": [
{
"type": "composer",
"url": "https://updates.ibexa.co"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"google-gemini-php/symfony": "^2.0",
"ibexa/connector-ai": "~5.0",
"ibexa/core-search": "~5.0",
"symfony/config": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/http-foundation": "^7.3",
"symfony/http-kernel": "^7.3",
"symfony/yaml": "^7.3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^v8.2",
"ibexa/admin-ui": "~5.0",
"ibexa/code-style": "^2.0",
"ibexa/content-forms": "~5.0",
"ibexa/core": "~5.0",
"ibexa/core-persistence": "~5.0",
"ibexa/doctrine-schema": "~5.0",
"ibexa/fieldtype-richtext": "~5.0",
"ibexa/graphql": "~5.0",
"ibexa/installer": "~5.0",
"ibexa/migrations": "~5.0",
"ibexa/personalization": "~5.0",
"ibexa/product-catalog": "~5.0",
"ibexa/rest": "~5.0",
"ibexa/scheduler": "~5.0",
"ibexa/search": "~5.0",
"ibexa/taxonomy": "~5.0",
"ibexa/test-core": "~5.0-dev",
"ibexa/twig-components": "~5.0",
"ibexa/version-comparison": "~5.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9",
"qossmic/deptrac-shim": "^0.24.0 || ^1.0.2",
"rector/rector": "^2.1"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots --allow-risky=yes",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"test-integration": "phpunit -c phpunit.integration.xml",
"phpstan": "phpstan analyse -c phpstan.neon",
"deptrac": "php vendor/bin/deptrac analyse"
},
"autoload": {
"psr-4": {
"CodeRhapsodie\\Bundle\\ConnectorGemini\\": "src/bundle/",
"CodeRhapsodie\\Contracts\\ConnectorGemini\\": "src/contracts/",
"CodeRhapsodie\\ConnectorGemini\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"CodeRhapsodie\\Tests\\Bundle\\ConnectorGemini\\": "tests/bundle/",
"CodeRhapsodie\\Tests\\Integration\\ConnectorGemini\\": "tests/integration/",
"CodeRhapsodie\\Tests\\ConnectorGemini\\": "tests/lib/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}