-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 934 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
35
36
37
{
"name": "php-guard/curl",
"description": "PHP Curl Wrapper with multi-curl support. Easy use with CurlRequest and CurlResponse objects.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Alexandre Le Borgne",
"email": "alexandre.leborgne.83@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PhpGuard\\Curl\\": "src/",
"PhpGuard\\Curl\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*"
},
"scripts": {
"test": "phpunit --coverage-clover=clover",
"fix": "php-cs-fixer fix --verbose --config=.php_cs",
"patch": "composer-version patch",
"minor": "composer-version minor",
"major": "composer-version major"
},
"require-dev": {
"phpunit/phpunit": "^7",
"friendsofphp/php-cs-fixer": "^2.13"
}
}