-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 2.2 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 2.2 KB
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
53
54
55
56
57
58
59
60
{
"name": "lemric/batch-request",
"description": "Send a single HTTP request that contains multiple (batch) Symfony Request calls. Once all operations are complete, a consolidated response is passed back to you and the HTTP connection is closed.",
"keywords": ["symfony", "laravel", "batch", "request"],
"support": {
"issues": "https://github.com/Lemric/BatchRequest/issues",
"security": "https://github.com/Lemric/BatchRequest/security",
"forum": "https://github.com/Lemric/BatchRequest/discussions"
},
"authors": [
{
"name": "Dominik Labudzinski",
"email": "dominik@labudzinski.com",
"homepage": "https://labudzinski.com"
},
{
"name": "Lemric",
"homepage": "https://lemric.com"
}
],
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Lemric\\BatchRequest\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Lemric\\BatchRequest\\Tests\\": "tests/" }
},
"require-dev": {
"phpunit/phpunit": "13.1.6.0",
"friendsofphp/php-cs-fixer": "^v3.95.1",
"symfony/phpunit-bridge": ">=5.1",
"symfony/routing": "^7.2 | ^8.0",
"phpstan/phpstan": "^2.1.51",
"symfony/rate-limiter": "^7.3 | ^8.0",
"dg/bypass-finals": "^1.9",
"symfony/http-client": ">=5.1",
"symfony/http-kernel": ">=5.1",
"symfony/dependency-injection": "^6.4 | ^7.0 | ^8.0",
"symfony/config": "^6.4 | ^7.0 | ^8.0",
"symfony/var-dumper": "^6.4 | ^7.0 | ^8.0",
"symfony/polyfill-php83": "^v1.30.0",
"illuminate/http": "^12.33"
},
"require": {
"php": ">=8.2",
"beberlei/assert": "^3.3"
},
"suggest": {
"symfony/rate-limiter": "A \"rate limiter\" controls how frequently some event (e.g. an HTTP request or a login attempt) is allowed to happen.",
"symfony/web-profiler-bundle": "Required to display the Batch Request panel in the Symfony Profiler (^6.4|^7.0|^8.0).",
"symfony/twig-bundle": "Required to render the Batch Request profiler panel template (^6.4|^7.0|^8.0).",
"symfony/dependency-injection": "Required to use the bundled Symfony BatchRequestBundle (^6.4|^7.0|^8.0).",
"illuminate/support": "Required for Laravel integration (^10.0|^11.0)"
},
"scripts": {
"rector": "vendor/bin/rector"
}
}