forked from humbug/file_get_contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (54 loc) · 1.41 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
{
"name": "nanbando/humbug_get_contents",
"description": "Secure wrapper for accessing HTTPS resources with file_get_contents for PHP 5.3+",
"keywords": ["file_get_contents", "download", "ssl", "tls", "https", "http"],
"homepage": "https://github.com/padraic/file_get_contents",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pádraic Brady",
"email": "[email protected]",
"homepage": "http://blog.astrumfutura.com"
},
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"require": {
"php": "^5.3 || ^7.0 || ^7.1 || ^7.2 || ^8.0",
"ext-openssl": "*",
"composer/ca-bundle": "^1.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.1",
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"Humbug\\": "src/"
},
"files": [
"src/function.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Humbug\\Test\\": "tests/Humbug/Test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}