-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 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
{
"name": "net_bazzline/php_component_curl",
"description": "free as in freedom simple object oriented curl request and response component (YACC - yet another curl component)",
"keywords": [
"bazzline",
"psr",
"psr-4",
"curl",
"oop",
"yet another",
"request",
"response",
"dispatcher",
"lgpl",
"free as in freedom",
"yacc",
"php56",
"php7",
"changelog"
],
"type": "library",
"minimum-stability": "dev",
"require": {
"net_bazzline/php_component_toolbox": "1.9.*",
"php": ">=5.6"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^5.7"
},
"license": "LGPL-3.0",
"authors": [
{
"name": "Stev Leibelt",
"email": "artodeto@bazzline.net",
"homepage": "https://artodeto.bazzline.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Net\\Bazzline\\Component\\Curl\\": "source/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Net\\Bazzline\\Component\\Curl\\": "test/"
}
}
}