forked from dereuromark/cakephp-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 864 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
{
"name": "dereuromark/cakephp-feed",
"type": "cakephp-plugin",
"description": "A CakePHP plugin containing a RssView to generate RSS feeds.",
"keywords": ["cakephp", "plugin", "view", "rss", "feed", "atom"],
"homepage": "https://github.com/dereuromark/cakephp-feed",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"role": "Author",
"homepage": "http://www.dereuromark.de"
}
],
"require":{
"php": ">=5.4",
"cakephp/cakephp": "3.0.*-dev"
},
"autoload": {
"psr-4": {
"Feed\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Feed\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"support":{
"source": "https://github.com/dereuromark/cakephp-feed",
"issues": "https://github.com/dereuromark/cakephp-feed/issues"
},
"extra": {
"installer-name": "Feed"
},
"minimum-stability": "dev"
}