-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 1.09 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
41
42
43
{
"name": "misd/linkify-bundle",
"type": "symfony-bundle",
"description": "Converts URLs and email addresses in text into HTML links",
"keywords": [
"url",
"email address",
"convert",
"link",
"bundle"
],
"homepage": "https://github.com/misd-service-development/linkify-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/misd-service-development/linkify-bundle/issues"
},
"require": {
"php": "^5.3.3 || ^7.0",
"symfony/framework-bundle": "^2.1 || ^3.0",
"misd/linkify": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0",
"symfony/twig-bundle": "^2.1 || ^3.0"
},
"conflict": {
"phpunit/phpunit-mock-objects": "<2.2",
"twig/twig": "<1.23"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig linkify filter"
},
"autoload": {
"psr-4": {
"Misd\\LinkifyBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}