-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.21 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
53
54
55
56
57
{
"name": "freezy-bee/httplug",
"description": "Nette integration for HTTPlug",
"type": "library",
"prefer-stable": true,
"keywords": [
"http",
"nette",
"httplug"
],
"license": "MIT",
"authors": [
{
"name": "Jakub Janata",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"nette/di": "^3.0",
"php-http/client-common": "^2.6",
"php-http/discovery": "^1.0"
},
"require-dev": {
"freezy-bee/nette-caching-psr6": "^2.0",
"mockery/mockery": "^1.1",
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/tester": "^2.0",
"nyholm/psr7": "^1.1",
"php-http/cache-plugin": "^1.4",
"php-http/curl-client": "^2.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/logger-plugin": "^1.0",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.0",
"symfony/cache": "^6.0",
"tracy/tracy": "^2.6"
},
"autoload": {
"psr-4": {
"FreezyBee\\Httplug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FreezyBee\\Httplug\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}