-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (41 loc) · 1.08 KB
/
composer.json
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
{
"name": "hiro-team/hiro-bot",
"description": "A discord bot written in PHP",
"authors": [
{
"name": "bariscodefx",
"email": "bariscodefx@protonmail.com"
},
{
"name": "CYB3R73",
"email": "lesterazat733@gmail.com"
}
],
"scripts": {
"test": "./vendor/bin/phpunit",
"build": "mkdir -p build && cd build && ../vendor/bin/phar-composer build .."
},
"type": "project",
"license": "apache-2.0",
"autoload": {
"psr-4": {
"hiro\\": "src/",
"hiro\\tests\\": "tests/hiro/"
}
},
"bin": ["bot.php"],
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"team-reflex/discord-php": "dev-master",
"vlucas/phpdotenv": "^5.3",
"wujunze/php-cli-color": "dev-master",
"symfony/translation": "^6.3.3",
"symfony/yaml": "^7.0.0",
"bariscodefx/php-hashmap": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"clue/phar-composer": "^1.4"
}
}