summaryrefslogtreecommitdiff
path: root/composer.json
blob: 2cc41ceb71aa180882ce9b660d1db0adea990db9 (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
{
    "name": "flat-file-forms/flat-file-forms",
    "type": "project",
    "authors": [
        {
            "name": "Daniel Weipert",
            "email": "code@drogueronin.de"
        }
    ],
    "require": {
        "symfony/http-foundation": "^6.0",
        "symfony/yaml": "^6.0",
        "twig/twig": "^3.5"
    },
    "require-dev": {
        "guzzlehttp/guzzle": "^7.5",
        "phpunit/phpunit": "^9.6"
    },
    "autoload": {
        "psr-4": {
            "FlatFileForms\\": "src/"
        }
    },
    "scripts": {
        "test": "phpunit tests"
    }
}