-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
35 lines (35 loc) · 1001 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
34
35
{
"name": "caxy/htmldiff-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle for php-htmldiff (caxy/php-htmldiff)",
"license": "MIT",
"keywords": [ "diff", "html", "diffing" ],
"homepage": "https://github.com/caxy/HtmlDiffBundle",
"authors": [
{
"name": "Josh Schroeder",
"email": "[email protected]",
"homepage": "http://www.caxy.com"
}
],
"require": {
"php": ">=7.0",
"symfony/framework-bundle": "~2.3||3.*||4.*||5.*||6.*",
"caxy/php-htmldiff": "~0.1"
},
"require-dev": {
"doctrine/doctrine-cache-bundle": "~1.0"
},
"suggest": {
"doctrine/doctrine-cache-bundle": "Used for caching the calculated diffs in caxy/php-htmldiff"
},
"autoload": {
"psr-4": { "Caxy\\HtmlDiffBundle\\": "src/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}