forked from Finagins-Contribution/FineDiff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.05 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.05 KB
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
41
42
43
44
45
46
47
48
{
"name": "cogpowered/finediff",
"description": "PHP implementation of a Fine granularity Diff engine",
"homepage": "https://github.com/cogpowered/FineDiff",
"license": "MIT",
"keywords": ["finediff", "diff", "text", "string", "opcode"],
"authors": [
{
"name": "Raymond Hill"
},
{
"name": "Rob Crowe",
"email": "rob@cogpowered.com"
}
],
"type": "library",
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"mockery/mockery": "*",
"phpunit/phpunit": "^4 || ^5 || ^6 || ^7"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"CogPowered\\FineDiff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FineDiffTests\\": "tests/"
}
},
"scripts": {
"tests": [
"phpunit"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}