summaryrefslogtreecommitdiff
path: root/composer.json
blob: 88fb362387fdfe0703c0504ed350b039b59aa08e (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",
        "twig/twig": "^3.3",
        "symfony/yaml": "^6.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "guzzlehttp/guzzle": "^7.4"
    },
    "autoload": {
        "psr-4": {
            "FlatFileForms\\": "src/"
        }
    },
    "scripts": {
        "test": "phpunit tests"
    }
}