diff options
author | Remi Collet <remi@remirepo.net> | 2018-02-02 08:41:56 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-02-02 08:41:56 +0100 |
commit | f805f57739116053377e854678e70d8dcf450c6d (patch) | |
tree | f86b85c7b7a0447f6ea11dff8f68dbbca1a7828e /composer.json | |
parent | 8e91a34e63e7138f965070d4337238499a65a8a4 (diff) |
update to 3.0.0
renamed to php-sebastian-diff3
move to /usr/share/php/SebastianBergmann/Diff3
raise dependency on PHP 7.1
use phpunit7
boostrap build
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/composer.json b/composer.json index 5aaa716..51b0083 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "sebastian/diff", "description": "Diff implementation", - "keywords": ["diff"], + "keywords": ["diff", "udiff", "unidiff", "unified diff"], "homepage": "https://github.com/sebastianbergmann/diff", "license": "BSD-3-Clause", "authors": [ @@ -14,20 +14,27 @@ "email": "mail@kore-nordmann.de" } ], + "minimum-stability": "dev", "require": { - "php": "^7.0" + "php": "^7.1" }, "require-dev": { - "phpunit/phpunit": "^6.2" + "phpunit/phpunit": "^7.0", + "symfony/process": "^2 || ^3.3 || ^4" }, "autoload": { "classmap": [ "src/" ] }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + }, "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "3.0-dev" } } } |