-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1008 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 1008 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
{
"name": "statamic/collaboration",
"type": "statamic-addon",
"description": "Real-time collaboration and multi-user authoring for Statamic Pro.",
"license": "proprietary",
"require": {
"statamic/cms": "^6.0",
"pixelfear/composer-dist-plugin": "^0.1.6"
},
"extra": {
"laravel": {
"providers": [
"Statamic\\Collaboration\\ServiceProvider"
]
},
"statamic": {
"name": "Collaboration",
"description": "Real-time collaboration and multi-user authoring for Statamic Pro."
},
"download-dist": {
"url": "https://github.com/statamic/collaboration/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
}
},
"autoload": {
"psr-4": {
"Statamic\\Collaboration\\": "src"
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}