-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 902 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 902 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "bolt/rssfeed",
"description": "RSS, JSON and Atom feeds extension for Bolt",
"type": "bolt-extension",
"keywords": [
"RSS",
"JSON",
"Atom",
"feed",
"feeds",
"syndication"
],
"require": {
"bolt/bolt": "^3.2.3"
},
"license": "GPL-3.0+",
"authors": [
{
"name": "Gawain Lynch",
"email": "gawain.lynch@gmail.com"
},
{
"name": "Bob den Otter",
"email": "bob@twokings.nl"
}
],
"autoload": {
"psr-4": {
"Bolt\\Extension\\Bolt\\RssFeed\\": [
"src/"
]
}
},
"extra": {
"bolt-class": "Bolt\\Extension\\Bolt\\RssFeed\\RssFeedExtension",
"bolt-icon": "icon.png",
"branch-alias": {
"dev-master": "3.2.x-dev"
}
}
}