summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/composer.json
blob: 1473284ce989269dd35ffed94e2ce97f8abf66dc (plain) (blame)
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
{
    "name": "intervention/httpauth",
    "description": "HTTP authentication (Basic & Digest) including ServiceProviders for easy Laravel integration",
    "homepage": "https://github.com/Intervention/httpauth",
    "keywords": ["authentication", "http", "laravel"],
    "license": "MIT",
    "authors": [
        {
            "name": "Oliver Vogel",
            "email": "oliver@olivervogel.com",
            "homepage": "http://olivervogel.com/"
        }
    ],
    "require": {
        "php": ">=5.3.0"
    },
    "autoload": {
        "psr-4": {
            "Intervention\\Httpauth\\": "src/Intervention/Httpauth"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Intervention\\Httpauth\\HttpauthServiceProvider"
            ],
            "aliases": {
                "Httpauth": "Intervention\\Httpauth\\Facades\\Httpauth"
            }
        }
    },
    "minimum-stability": "stable"
}