-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.11 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "alex-kalanis/remote-request",
"description": "PHP libraries for make queries onto remote servers",
"keywords": [
"restapi",
"rest",
"http",
"fsp",
"tcp",
"udp",
"curl",
"server",
"socket",
"fsocket",
"request"
],
"license": "BSD-3-Clause",
"type": "library",
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sockets": "*",
"ext-zlib": "*"
},
"require-dev": {
"shipmonk/composer-dependency-analyser": "^1.4",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": ">=9.0 <11"
},
"suggest": {
},
"autoload": {
"psr-4": {
"kalanis\\RemoteRequest\\": "php-src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "php-tests/"
}
},
"scripts": {
},
"minimum-stability": "dev",
"prefer-stable": true
}