-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 765 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 765 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
{
"name": "brego/feedbin-opml-export",
"description": "Convert Feedbin subscriptions to an OPML file, which can be published on your website",
"type": "library",
"keywords": ["OPML", "XML", "OPML export", "Feedbin", "Feedbin export", "RSS", "OPML publish", "PHP library"],
"homepage": "https://github.com/brego/feedbin-opml-export",
"license": "MIT",
"authors": [
{
"name": "Kamil Dzieliński",
"homepage": "https://brego.dev/",
"email": "contact@brego.dev",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"Brego\\FeedbinOpmlExport\\": "src/"
}
}
}