mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-23 02:28:15 +02:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "jfcherng/php-sequence-matcher",
|
|
"description": "A longest sequence matcher. The logic is primarily based on the Python difflib package.",
|
|
"type": "library",
|
|
"license": "BSD-3-Clause",
|
|
"minimum-stability": "beta",
|
|
"prefer-stable": true,
|
|
"authors": [
|
|
{
|
|
"name": "Jack Cherng",
|
|
"email": "jfcherng@gmail.com"
|
|
},
|
|
{
|
|
"name": "Chris Boulton",
|
|
"email": "chris.boulton@interspire.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Jfcherng\\Diff\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Jfcherng\\Diff\\Test\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.1"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3",
|
|
"phan/phan": "^5",
|
|
"phpunit/phpunit": "^9 || ^10",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.1.99"
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"analyze": [
|
|
"phan --color",
|
|
"phpcs --colors -n"
|
|
],
|
|
"fix": [
|
|
"php-cs-fixer fix --verbose"
|
|
],
|
|
"test": [
|
|
"phpunit --display-deprecations"
|
|
]
|
|
}
|
|
}
|