-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1014 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": "hasura-extra/api-client",
"license": "MIT",
"description": "The library provides an api client to interact with Hasura api.",
"type": "library",
"autoload": {
"psr-4": {
"Hasura\\ApiClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hasura\\ApiClient\\Tests\\": "tests"
}
},
"conflict": {
"hasura-extra/hasura-bundle": "*",
"hasura-extra/auth-hook": "<5.0.0",
"hasura-extra/event-dispatcher": "<5.0.0",
"hasura-extra/bundle": "<5.0.0",
"hasura-extra/metadata": "<5.0.0",
"hasura-extra/laravel": "<2.5.0",
"hasura-extra/graphql-scalars": "<5.0.0"
},
"require": {
"php": ">=8.2",
"symfony/http-client": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4"
},
"extra": {
"branch-alias": {
"dev-main": "4.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}