-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
44 lines (44 loc) · 1.26 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
{
"name": "overblog/dataloader-php",
"type": "library",
"license": "MIT",
"description": "DataLoaderPhp is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.",
"keywords": ["dataLoader", "caching", "batching"],
"config" : {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Overblog\\DataLoader\\": "src/",
"Overblog\\PromiseAdapter\\": "lib/promise-adapter/src/"
}
},
"autoload-dev": {
"psr-4": {
"Overblog\\DataLoader\\Test\\": "tests/",
"Overblog\\PromiseAdapter\\Test\\": "lib/promise-adapter/tests/"
}
},
"replace": {
"overblog/promise-adapter": "self.version"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"guzzlehttp/promises": "^1.5.0 || ^2.0.0",
"phpunit/phpunit": "^10.3",
"react/promise": "^2.8.0",
"webonyx/graphql-php": "^15.0"
},
"suggest": {
"guzzlehttp/promises": "To use with Guzzle promise",
"react/promise": "To use with ReactPhp promise",
"webonyx/graphql-php": "To use with Webonyx GraphQL native promise"
},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
}
}