forked from caxy/HtmlDiffBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1019 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 1019 Bytes
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
{
"name": "caxy/htmldiff-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Bundle for php-htmldiff (caxy/php-htmldiff)",
"license": "MIT",
"keywords": [ "diff", "html", "diffing" ],
"homepage": "https://github.com/caxy/HtmlDiffBundle",
"authors": [
{
"name": "Josh Schroeder",
"email": "jschroeder@caxy.com",
"homepage": "http://www.caxy.com"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1",
"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"
},
"target-dir": "Caxy/HtmlDiffBundle",
"autoload": {
"psr-0": { "Caxy\\HtmlDiffBundle": "" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}