mirror of
https://github.com/chinayin/ip2region-core-php.git
synced 2025-12-07 06:37:02 +08:00
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/main/ChangeLog-9.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/6.0.0...9.5.21) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "chinayin/ip2region-core",
|
|
"description": "Ip2region (2.0 - xdb) is a offline IP address manager framework and locator with ten microsecond searching performance. xdb engine implementation for many programming languages\n\n",
|
|
"authors": [
|
|
{
|
|
"name": "lionsoul2014",
|
|
"email": "1187582057@qq.com"
|
|
},
|
|
{
|
|
"name": "chinayin",
|
|
"email": "whereismoney@qq.com"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"require": {
|
|
"PHP": ">=7.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
"phpstan/phpstan": "^1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ip2region\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ip2region\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"test-ci": "vendor/bin/phpunit --coverage-text",
|
|
"lint": "vendor/bin/php-cs-fixer fix -v",
|
|
"analyse": "vendor/bin/phpstan analyse",
|
|
"travis": [
|
|
"composer test",
|
|
"composer lint",
|
|
"composer analyse"
|
|
]
|
|
}
|
|
}
|