blob: 0b244f05eae722dfc9bd88501a7c42edd96e0d89 (
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": "Zhineng Li",
"email": "[email protected]"
}
],
"require-dev": {
"symfony/var-exporter": "^7.2",
"phpunit/phpunit": "^12"
},
"scripts": {
"test": "phpunit"
}
}
|