-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
40 lines (40 loc) · 1.11 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
{
"name": "solspace/craft3-calendar",
"description": "The most powerful event management plugin for Craft.",
"version": "2.0.8",
"type": "craft-plugin",
"minimum-stability": "dev",
"authors": [
{
"name": "Solspace",
"homepage": "https://solspace.com/"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"php": ">=7.0",
"rlanvin/php-rrule": "~1.6.0",
"symfony/property-access": "^2.8|^3.0|^4.0",
"symfony/finder": "^2.8|^3.0|^4.0",
"symfony/filesystem": "^2.8|^3.0|^4.0",
"solspace/craft3-commons": "^1.0.8",
"nesbot/carbon": "^1.22.1"
},
"autoload": {
"psr-4": {
"Solspace\\Calendar\\": "src/"
}
},
"extra": {
"schemaVersion": "2.0.5",
"handle": "calendar",
"class": "Solspace\\Calendar\\Calendar",
"name": "Calendar",
"developer": "Solspace",
"developerUrl": "https://solspace.com/craft/calendar",
"documentationUrl": "https://solspace.com/craft/calendar/docs",
"changelogUrl": "https://raw.githubusercontent.com/solspace/craft3-calendar/master/CHANGELOG.md",
"hasSettings": true,
"hasCpSection": true
}
}