{ "name": "jfcherng/php-diff", "description": "A comprehensive library for generating differences between two strings in multiple formats (unified, side by side HTML etc).", "type": "library", "license": "BSD-3-Clause", "keywords": [ "diff", "udiff", "unidiff", "unified diff" ], "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": ">=7.1.3", "jfcherng/php-color-output": "^2.0", "jfcherng/php-mb-string": "^1.4.6", "jfcherng/php-sequence-matcher": "^3.2.10" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.19", "liip/rmt": "^1.6", "phan/phan": "^2.5 || ^3 || ^4", "phpunit/phpunit": ">=7 <10", "squizlabs/php_codesniffer": "^3.6" }, "config": { "platform": { "php": "7.1.3" }, "sort-packages": true }, "scripts": { "analyze": [ "phan --color", "phpcs --colors -n" ], "fix": [ "php-cs-fixer fix --verbose" ], "server": [ "Composer\\Config::disableProcessTimeout", "@php -S localhost:12388 -t example/" ], "test": [ "phpunit --verbose" ] } }