-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
44 lines (44 loc) · 1000 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
41
42
43
44
{
"name": "p3k/xray",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/aaronpk/XRay",
"description": "X-Ray returns structured data from any URL",
"require": {
"mf2/mf2": "^0.4||^0.5",
"ezyang/htmlpurifier": "^4.10",
"indieweb/link-rel-parser": "^0.1.0",
"p3k/timezone": "^0.1.0",
"p3k/http": "^0.1.0",
"cebe/markdown": "^1.1.0",
"p3k/picofeed": "^0.1.0",
"masterminds/html5": "^2.3"
},
"autoload": {
"psr-4": {
"p3k\\XRay\\": "lib/XRay"
},
"files": [
"lib/helpers.php",
"lib/XRay.php"
]
},
"require-dev": {
"league/plates": "^3.0",
"league/route": "^1.0",
"phpunit/phpunit": "^8.0.0|^9.0.0"
},
"autoload-dev": {
"files": [
"controllers/Main.php",
"controllers/Parse.php",
"controllers/Token.php",
"controllers/Rels.php",
"controllers/Feeds.php",
"controllers/Certbot.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}