12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "padraic/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": "padraic.brady@gmail.com",
- "homepage": "http://blog.astrumfutura.com"
- },
- {
- "name": "Théo Fidry",
- "email": "theo.fidry@gmail.com"
- }
- ],
- "require": {
- "php": "^5.3 || ^7.0 || ^7.1 || ^7.2",
- "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"
- }
- }
- }
|