-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.44 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "simivar/genius-php",
"description": "Genius PHP is a open source library that allows you to access Genius API from your PHP application. Supports every resource.",
"keywords": [
"genius",
"rapgenius",
"api",
"psr-4",
"httplug"
],
"homepage": "https://github.com/simivar/Genius-PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "simivar",
"email": "simivar@gmail.com",
"homepage": "https://github.com/simivar/Genius-PHP"
}
],
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.13",
"ext-json": "*",
"myclabs/php-enum": "^1.8",
"php-http/message": "^1.0",
"php-http/client-common": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.85",
"phpstan/phpstan-phpunit": "^0.12.18",
"php-http/guzzle7-adapter": "^1.0",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.8",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-4": {
"Genius\\": "src/Genius"
}
},
"autoload-dev": {
"psr-4": {
"Genius\\": "tests"
}
}
}