aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: e9f55d1a1fe7626ac816a3d8e12e1d542d3ab329 (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
{
    "name": "brettparson/miniroute",
    "description": "A small attribute-based routing and middleware kernel for PHP applications.",
    "type": "library",
    "license": "MIT",
    "require": {
        "php": ">=8.2"
    },
    "autoload": {
        "psr-4": {
            "BrettParson\\MiniRoute\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "BrettParson\\MiniRoute\\Tests\\": "tests/"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "^10.5 || ^11.0"
    },
    "config": {
        "sort-packages": true
    }
}