-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (33 loc) · 964 Bytes
/
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
{
"name": "internet/intercord",
"type": "library",
"description": "A library for sending payloads to discord via webhooks.",
"homepage": "https://doctor-internet.dev",
"license": "MIT",
"authors": [{
"name": "John Internet",
"homepage": "https://doctor-internet.dev/",
"email": "[email protected]",
"role": "Developer"
}],
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php --colors=never --whitelist src/ --testdox-html test.html --coverage-clover=coverage.xml tests",
"pcov-polyfill": [
"@composer require --dev pcov/clobber",
"pcov clobber"
]
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5.8"
},
"autoload": {
"psr-4": {
"Internet\\InterCord\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": ">=7 <10"
}
}