-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "bymayo/strava-sync",
"description": "Connect to Strava with oAuth and sync activities etc to Craft CMS ",
"type": "craft-plugin",
"version": "1.0.16",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"strava sync"
],
"support": {
"docs": "https://github.com/bymayo/strava-sync/blob/master/README.md",
"issues": "https://github.com/bymayo/strava-sync/issues"
},
"license": "MIT",
"authors": [
{
"name": "bymayo",
"homepage": "http://bymayo.co.uk"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"basvandorst/stravaphp": "1.2"
},
"autoload": {
"psr-4": {
"bymayo\\stravasync\\": "src/"
}
},
"extra": {
"name": "Strava Sync",
"handle": "strava-sync",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/bymayo/strava-sync/master/CHANGELOG.md",
"class": "bymayo\\stravasync\\StravaSync"
}
}