forked from misd-service-development/linkify-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"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",
"symfony/framework-bundle": "^2.3 || ^3.0",
"misd/linkify": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/twig-bundle": "^2.3.24 || ^3.0"
},
"conflict": {
"phpunit/phpunit-mock-objects": "<2.2"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig linkify filter"
},
"autoload": {
"psr-4": {
"Misd\\LinkifyBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}