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 da152fdd37
Some checks failed
CI / PHP 8.3 (push) Failing after 1s
CI / PHP 8.4 (push) Failing after 1s
fix: rename core/php-framework dependency to core/php
2026-03-09 17:38:57 +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": "*"
},
"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
}