Files
connector-claude/composer.json
2026-01-27 08:47:56 +01:00

106 lines
2.9 KiB
JSON

{
"name": "code-rhapsodie/connector-claude",
"description": "Connector for Claude in Ibexa",
"license": "MIT",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp",
"ibexa",
"ia",
"Claude",
"ai"
],
"authors": [
{
"name": "Jean-Baptiste Nahan",
"email": "jean-baptiste@code-rhapsodie.fr",
"role": "Developer"
},
{
"name": "Loïc A.",
"email": "loic@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": "*",
"ibexa/connector-ai": "~4.6",
"ibexa/core-search": "~4.6",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/http-client-contracts": "^2.5",
"symfony/http-client": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"dama/doctrine-test-bundle": "^v6.7",
"ibexa/admin-ui": "~4.6",
"ibexa/code-style": "~2.0.0",
"ibexa/content-forms": "~4.6",
"ibexa/core": "~4.6",
"ibexa/core-persistence": "~4.6",
"ibexa/doctrine-schema": "~4.6",
"ibexa/fieldtype-richtext": "~4.6",
"ibexa/graphql": "~4.6",
"ibexa/installer": "~4.6",
"ibexa/migrations": "~4.6",
"ibexa/personalization": "~4.6",
"ibexa/product-catalog": "~4.6",
"ibexa/rest": "~4.6",
"ibexa/scheduler": "~4.6",
"ibexa/search": "~4.6",
"ibexa/taxonomy": "~4.6",
"ibexa/test-core": "4.6.x-dev",
"ibexa/twig-components": "~4.6",
"ibexa/version-comparison": "~4.6",
"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\\ConnectorClaude\\": "src/bundle/",
"CodeRhapsodie\\Contracts\\ConnectorClaude\\": "src/contracts/",
"CodeRhapsodie\\ConnectorClaude\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"CodeRhapsodie\\Tests\\Bundle\\ConnectorClaude\\": "tests/bundle/",
"CodeRhapsodie\\Tests\\Integration\\ConnectorClaude\\": "tests/integration/",
"CodeRhapsodie\\Tests\\ConnectorClaude\\": "tests/lib/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}