-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
40 lines (40 loc) · 854 Bytes
/
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
{
"name": "asika/autolink",
"description": "Auto convert url to link anchor.",
"type": "library",
"keywords": [
"link",
"linkify",
"autolink"
],
"authors": [
{
"name": "Simon Asika",
"email": "[email protected]"
}
],
"homepage": "https://github.com/asika32764/php-autolink",
"minimum-stability": "beta",
"require": {
"php": ">=8.0"
},
"require-dev": {
"windwalker/test": "^4.0",
"windwalker/utilities": "^4.0",
"phpunit/phpunit": "^9.0||^10.0||^11.0"
},
"scripts": {
"test": "phpunit"
},
"autoload": {
"psr-4": {
"Asika\\Autolink\\": "src/"
}
},
"config": {
"platform": {
"php": "8.0.5"
}
},
"license": "MIT"
}