summaryrefslogtreecommitdiff
path: root/composer.json
blob: b8e7f69c8153e57d54e77569a0331a92805a430a (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": "drogueronin/guzzle-cardmarket-api-middleware",
    "version": "1.0.0",
    "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": {
            "CardmarketApi\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "CardmarketApi\\Tests\\": "tests/"
        }
    }
}