summaryrefslogtreecommitdiff
path: root/composer.json
blob: 48ff46e1058d986acb73b75d7c79d4eeb8789c2a (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
{
    "name": "matrix-php/matrix-php",
    "type": "project",
    "authors": [
        {
            "name": "Daniel Weipert",
            "email": "git@mail.dweipert.de"
        }
    ],
    "require": {
        "symfony/dotenv": "^7.3",
        "symfony/http-foundation": "^7.3",
        "symfony/routing": "^7.3",
        "symfony/expression-language": "^7.3"
    },
    "require-dev": {
        "guzzlehttp/guzzle": "^7.9",
        "phpunit/phpunit": "^12.3"
    },
    "autoload": {
        "psr-4": {
            "App\\": "src/",
            "Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit --testdox tests"
    }
}