summaryrefslogtreecommitdiff
path: root/composer.json
blob: 255fc1fc26229dfbc30a90e988f52540194b6c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "name": "fbeans/ml",
    "type": "project",
    "autoload": {
        "psr-4": {
            "App\\": "src/"
        }
    },
    "autoload-dev": {
        "App\\Tests\\": "tests/"
    },
    "authors": [
        {
            "name": "FBeans",
            "email": "phil@pgburton.com"
        }
    ],
    "require": {
    },
    "require-dev": {
        "phpunit/phpunit": "^9.0.0"
    }
}