-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 987 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
37
38
39
{
"name": "team-reflex/challonge-php",
"description": "PSR-18 compatible library to interface with the bracket generator Challonge.",
"require": {
"ext-json": "*",
"php": "^8.1 | ^8.2",
"psr/http-client": "^1.0",
"psr/log": "^3.0",
"illuminate/collections": "~9| ~10",
"spatie/data-transfer-object": "^2.5",
"nyholm/psr7": "^1.6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"php-http/mock-client": "^1.4",
"symfony/http-client": "^5.3",
"guzzlehttp/guzzle": "^7.4.5"
},
"license": "MIT",
"authors": [
{
"name": "Kyle Ward",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Reflex\\Challonge\\": "src/Challonge"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}