-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (77 loc) · 2.44 KB
/
composer.json
File metadata and controls
78 lines (77 loc) · 2.44 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
{
"name": "rumenx/php-chatbot",
"description": "A modern, framework-agnostic PHP package for adding customizable, AI-powered chat popups to any web application. Includes adapters for Laravel and Symfony, supports multiple AI providers, and is easy to extend.",
"homepage": "https://github.com/RumenDamyanov/php-chatbot",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rumen Damyanov",
"email": "contact@rumenx.com",
"role": "Developer",
"homepage": "https://rumenx.com"
}
],
"support": {
"issues": "https://github.com/RumenDamyanov/php-chatbot/issues",
"source": "https://github.com/RumenDamyanov/php-chatbot",
"wiki": "https://github.com/RumenDamyanov/php-chatbot/wiki"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/RumenDamyanov"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*"
},
"suggest": {
"psr/log": "^3.0 - For PSR-3 compatible logging support",
"monolog/monolog": "^3.0 - Recommended logger implementation",
"guzzlehttp/guzzle": "^7.0 - Alternative HTTP client (instead of cURL)"
},
"require-dev": {
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.10 || ^2.0",
"squizlabs/php_codesniffer": "^3.7 || ^4.0",
"symfony/config": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/http-kernel": "^7.3",
"symfony/yaml": "^7.3",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Rumenx\\PhpChatbot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rumenx\\PhpChatbot\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest --coverage",
"analyze": "phpstan analyse src --level=6",
"style": "phpcs src --standard=PSR12 --extensions=php",
"style-fix": "phpcbf src --standard=PSR12 --extensions=php",
"coverage-html": "pest --coverage-html=coverage-html --colors=never"
},
"extra": {
"laravel": {
"providers": [
"Rumenx\\PhpChatbot\\Adapters\\Laravel\\PhpChatbotServiceProvider"
]
}
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}