-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.27 KB
/
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
45
{
"name": "verbb/social-feeds",
"description": "Aggregate social media content with feeds.",
"type": "craft-plugin",
"version": "2.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/social-feeds/issues?state=open",
"source": "https://github.com/verbb/social-feeds",
"docs": "https://github.com/verbb/social-feeds",
"rss": "https://github.com/verbb/social-feeds/commits/v2.atom"
},
"license": "proprietary",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"symfony/property-access": "^6.0 || ^7.0",
"symfony/serializer": "^6.0 || ^7.0",
"verbb/auth": "^2.0.17",
"verbb/base": "^3.0.0"
},
"autoload": {
"psr-4": {
"verbb\\socialfeeds\\": "src/"
}
},
"extra": {
"name": "Social Feeds",
"handle": "social-feeds",
"changelogUrl": "https://raw.githubusercontent.com/verbb/social-feeds/craft-5/CHANGELOG.md",
"class": "verbb\\socialfeeds\\SocialFeeds"
}
}