-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 951 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 951 Bytes
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
{
"name": "radiokey/messenger-control",
"type": "project",
"require": {
"php": ">=7.4",
"ext-json": "*",
"radiokey/php-hub-client": "^0.1.0",
"slim/slim": "^4.8",
"symfony/dotenv": "^5.3",
"php-di/slim-bridge": "^3.1",
"longman/telegram-bot": "^0.74.0",
"slim/psr7": "^1.4",
"zeuxisoo/slim-whoops": "^0.7.3",
"psr/log": "^1.1",
"monolog/monolog": "^2.3",
"fig/http-message-util": "^1.1",
"symfony/console": "^5.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Radiokey\\MessengerControl\\": "src/"
}
},
"authors": [
{
"name": "Dmytro Sokil",
"email": "dmytro.sokil@gmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"start-stub-server": "php -S 127.0.0.1:9999 public/bootstrap.php"
}
}