summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a90f29db4d128364093c1a9870cf27f34d4949c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "name": "purplecode/pcurl",
    "type": "library",
    "description": "CURL wrapper for PHP >= 5.3",
    "keywords": ["php", "wrapper", "curl"],
    "homepage": "https://github.com/purplecode/php.curl",
    "license": "MIT",
    "authors": [
        {
            "name": "Mateusz Jaworski",
            "email": "niespammnie@gmail.com"
        }
    ],
    "require": {
        "lib-curl": "*",
        "php": ">=5.3.0"
    },
    "autoload": {
        "psr-0": {
            "PurpleCode\\PCurl\\": "src"
        }
    }
}