forked from misd-service-development/php-linkify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 730 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 730 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
{
"name": "jmbtechnologylimited/linkify",
"type": "library",
"description": "Converts URLs and email addresses in text into HTML links",
"keywords": ["url", "email address", "convert", "link"],
"homepage": "https://github.com/JMB-Technology-Limited/php-linkify",
"license": "MIT",
"support": {
"issues": "https://github.com/JMB-Technology-Limited/php-linkify/issues"
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Misd\\Linkify\\": "src/Misd/Linkify"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}