forked from cogpowered/FineDiff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
{
"name": "lolli42/finediff",
"description": "PHP implementation of a Fine granularity Diff engine",
"homepage": "https://github.com/lolli42/FineDiff",
"license": "MIT",
"keywords": ["finediff", "diff", "text", "string", "opcode"],
"authors": [
{
"name": "Raymond Hill"
},
{
"name": "Rob Crowe",
"email": "rob@cogpowered.com"
},
{
"name": "Christian Kuhn",
"email": "lolli@schwarzbu.ch",
"role": "maintainer"
}
],
"type": "library",
"require": {
"php": ">=8.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.5.7 || ^12.0.2",
"friendsofphp/php-cs-fixer": "^3.69.0",
"phpstan/phpstan": "^2.1.7"
},
"replace": {
"cogpowered/finediff": "*"
},
"autoload": {
"psr-4": { "cogpowered\\FineDiff\\": "src/" }
},
"autoload-dev": {
"psr-4": { "cogpowered\\FineDiff\\Tests\\": "tests/"}
}
}