-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1 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": "extiverse/api-client",
"description": "Client for the extiverse.com API.",
"license": "MIT",
"homepage": "https://extiverse.com",
"authors": [
{
"name": "Daniël Klabbers",
"email": "[email protected]",
"homepage": "http://luceos.com"
}
],
"require": {
"php": ">= 7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "7.3.* || 7.4.* || 7.5.*",
"guzzlehttp/psr7": "~1.1 || ^2.0",
"illuminate/support": "8.*",
"vlucas/phpdotenv": "^5.2",
"psr/cache": "^1.0",
"cache/array-adapter": "^1.1",
"swisnl/json-api-client": "1.3.*",
"composer/semver": "^3.2.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "*"
},
"autoload": {
"psr-4": {
"Extiverse\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Extiverse\\Tests\\": "tests/"
}
}
}