-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "biurad/http-galaxy",
"type": "library",
"description": "Http Galaxy: abstraction for HTTP request, response, and csp protection. Provides careful data sanitization and utility for URL and cookies manipulation.",
"keywords": ["http","request","response","csp","url","proxy","cookies","session","PSR-7","PSR-15","PSR-17","PSR-18","biurad","php"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "divineibok@gmail.com"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/http-galaxy/",
"issues": "https://github.com/biurad/http-galaxy/issues",
"rss": "https://github.com/biurad/http-galaxy/releases.atom",
"source": "https://github.com/biurad/http-galaxy"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"psr/http-server-middleware": "^1.0",
"symfony/polyfill-php80": "^1.23",
"symfony/http-foundation": "^5.3 || ^6.0"
},
"require-dev": {
"composer/package-versions-deprecated": "^1.11",
"laminas/laminas-stratigility": "^3.4",
"phpunit/phpunit": "^8.5 || ^9.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/cache": "^5.3 || ^6.0",
"vimeo/psalm": "^4.7"
},
"suggest": {
"laminas/laminas-stratigility": "To use PSR-15 middleware support",
"psr/cache": "To use the Cache Session Handler and/or cache PSR-15 middleware",
"symfony/cache": "To use the Cache Session Handler and/or cache PSR-15 middleware",
"symfony-http-client": "To use the Symfony PHP HTTP client library",
"symfony/web-link": "To use PSR-13 link in application",
"yiisoft/network-utilities": "To use Network related utilities for IP and DNS"
},
"autoload": {
"psr-4": {
"Biurad\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\Http\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"phpcs": "phpcs -q",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@psalm",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}