forked from yetanotherape/diff-match-patch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 911 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "yetanotherape/diff-match-patch",
"description": "Port of the google-diff-match-patch (https://code.google.com/p/google-diff-match-patch/) lib to PHP",
"type": "library",
"keywords": ["Diff", "Match", "Patch", "Fuzzy search"],
"homepage": "https://code.google.com/p/google-diff-match-patch/",
"license": "Apache-2.0",
"authors": [
{
"name": "Daniil Skrobov",
"email": "[email protected]"
},
{
"name": "Neil Fraser",
"email": "[email protected]",
"homepage": "http://neil.fraser.name/"
}
],
"require": {
"php": ">=5.3",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"DiffMatchPatch\\": "src"
}
}
}