-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 895 Bytes
/
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
{
"name": "domm98cz/curl",
"description": "PHP lightweight cURL client",
"keywords": ["curl", "client", "lightweight"],
"homepage": "https://Domm.cz",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dominik Procházka",
"email": "[email protected]",
"homepage": "https://Domm.cz",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/Domm98CZ/curl/readme.md"
},
"require": {
"php": ">=8.1",
"ext-curl": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0"
},
"autoload": {
"classmap": ["src/"]
},
"minimum-stability": "dev",
"prefer-stable": true
}