forked from restcord/restcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.13 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
{
"name": "restcord/restcord",
"description": "REST Library for the Discord API",
"type": "library",
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/guzzle-services": "^1.0",
"netresearch/jsonmapper": "^1.4",
"symfony/options-resolver": "^3.4|^4.4|^5.1",
"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": "[email protected]"
}
],
"require-dev": {
"beberlei/assert": "^2.7",
"gossi/php-code-generator": "^0.5.0",
"symfony/console": "^2.6|^3.0|^4.0",
"symfony/process": "^2.6|^3.0|^4.0",
"symfony/var-dumper": "^2.6|^3.0|^4.0",
"twig/twig": "^1.20|^2.0",
"phpunit/phpunit": "^8.0|^9.0"
}
}