summaryrefslogtreecommitdiff
path: root/composer.json
blob: a0cbcaad8b1ef7400907ee3a96d259f0418433ee (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
30
31
32
{
    "name": "lizhineng/region-china",
    "description": "China region library for PHP.",
    "type": "library",
    "require": {
        "php": "^8.4"
    },
    "license": "MIT",
    "autoload": {
        "psr-4": {
            "Zhineng\\RegionChina\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Zhineng\\RegionChina\\Tests\\": "tests/"
        }
    },
    "authors": [
        {
            "name": "Li Zhineng",
            "email": "[email protected]"
        }
    ],
    "require-dev": {
        "symfony/var-exporter": "^7.2",
        "phpunit/phpunit": "^12"
    },
    "scripts": {
        "test": "phpunit"
    }
}