summaryrefslogtreecommitdiff
path: root/composer.json
blob: 1321f5c07bdbb8b5534301454a98282ef6f175a2 (plain)
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
{
    "name": "dweipert/guzzle-cardmarket-api-middleware",
    "version": "1.0.1",
    "type": "library",
    "authors": [
        {
            "name": "Daniel Weipert",
            "email": "code@drogueronin.de"
        }
    ],
    "scripts": {
        "test": "vendor/bin/phpunit tests"
    },
    "require": {
        "php": ">=7.4",
        "guzzlehttp/guzzle": "^7.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5"
    },
    "config": {
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "Dweipert\\CardmarketApi\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Dweipert\\CardmarketApi\\Tests\\": "tests/"
        }
    }
}