-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "joomla/http",
"type": "joomla-package",
"description": "Joomla HTTP Package",
"keywords": ["joomla", "framework", "http"],
"homepage": "https://github.com/joomla-framework/http",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"joomla/uri": "^3.0",
"composer/ca-bundle": "^1.3.5",
"laminas/laminas-diactoros": "^2.24.0"
},
"require-dev": {
"joomla/test": "^3.0",
"phpunit/phpunit": "^9.5.28",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^1.10.7",
"phan/phan": "^5.4.2"
},
"suggest": {
"ext-curl": "To use cURL for HTTP connections"
},
"autoload": {
"psr-4": {
"Joomla\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Http\\Tests\\": "Tests/"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}