forked from restcord/restcord
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.35 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "oliverschloebe/restcord",
"description": "REST Library for the Discord API",
"type": "library",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/guzzle-services": "^1.0",
"monolog/monolog": "^2.1.1 || ^3.0",
"netresearch/jsonmapper": "^1.4",
"symfony/options-resolver": "^3.4 || ^4.4 || ^5.1 || ^6.0 || ^7.0",
"psr/log": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"RestCord\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RestCord\\Test\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com"
},
{
"name": "Oliver Schlöbe",
"email": "info@schloebe.de"
}
],
"replace": {
"restcord/restcord": "*"
},
"require-dev": {
"beberlei/assert": "^2.7",
"gossi/php-code-generator": "^0.5.0",
"symfony/console": "^5|^6|^7",
"symfony/process": "^5|^6|^7",
"symfony/var-dumper": "^5|^6|^7",
"twig/twig": "^1.20|^2.0|^3.0",
"phpunit/phpunit": "^8.0|^9.0"
}
}