12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "sebastian/diff",
- "description": "Diff implementation",
- "keywords": ["diff", "udiff", "unidiff", "unified diff"],
- "homepage": "https://github.com/sebastianbergmann/diff",
- "license": "BSD-3-Clause",
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- }
- ],
- "require": {
- "php": ">=7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.5 || ^8.0",
- "symfony/process": "^2 || ^3.3 || ^4"
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "autoload-dev": {
- "classmap": [
- "tests/"
- ]
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- }
- }
|