forked from restcord/restcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.15 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": "^5.6|^7.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/guzzle-services": "^1.0",
"monolog/monolog": "^1.22",
"netresearch/jsonmapper": "^1.4",
"symfony/options-resolver": "^2.6|^3.0|^4.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.4.1",
"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": "^6.0|^5.0"
}
}