-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 895 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
{
"name": "patricksavalle/content-syndication",
"description": "Helper library for dealing with HTML metadata retrieval, RSS, ATOM, URL parsing and normalization",
"version": "v0.1",
"type": "library",
"keywords": [
"RSS",
"atom",
"syndication",
"html metadata",
"url parsing"
],
"license": "MIT",
"authors": [
{
"name": "Patrick Savalle",
"email": "[email protected]",
"homepage": "https://github.com/patricksavalle/php-content-syndication",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-curl": "*",
"ext-apcu": "*",
"erusev/parsedown": "^1.7",
"league/html-to-markdown": "^5.0",
"genert/bbcode": "^1.1"
},
"autoload": {
"psr-4": {
"ContentSyndication\\": "."
}
}
}