-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.01 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
{
"name": "bicpi/html-converter-bundle",
"type": "symfony-bundle",
"description": "This bundle provides Symfony integration of bicpi's html-converter library",
"keywords": ["html", "text", "converter", "symfony2", "bundle", "bicpi"],
"homepage": "http://github.com/bicpi/HtmlConverterBundle",
"license": "MIT",
"authors": [
{
"name": "Philipp Rieber",
"homepage": "https://philipp-rieber.net"
}
],
"require": {
"php": ">=5.5.9",
"bicpi/html-converter": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"symfony/dependency-injection": "^2.7 || ^3.0",
"symfony/http-kernel": "^2.7 || ^3.0",
"symfony/config": "^2.7 || ^3.0",
"symfony/yaml": "^2.7 || ^3.0"
},
"autoload": {
"psr-4": {
"bicpi\\Bundle\\HtmlConverterBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}