This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-agentic/composer.json
Snider 31e2aae980
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s
chore: rename package from host-uk/core-agentic to core/php-agentic
Aligns composer package name with forge repo path
(forge.lthn.ai/core/php-agentic).

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-03 10:37:04 +00:00

53 lines
1.2 KiB
JSON

{
"name": "core/php-agentic",
"description": "AI agent orchestration and MCP tools for Laravel",
"keywords": [
"ai",
"agents",
"mcp",
"orchestration"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"core/php-framework": "dev-main"
},
"require-dev": {
"laravel/pint": "^1.18",
"livewire/livewire": "^3.0",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-livewire": "^3.0"
},
"autoload": {
"psr-4": {
"Core\\Mod\\Agentic\\": "",
"Core\\Service\\Agentic\\": "Service/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mod\\Agentic\\Tests\\": "tests/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Mod\\Agentic\\Boot"
]
}
},
"scripts": {
"lint": "pint",
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}