-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
43 lines (43 loc) · 961 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
39
40
41
42
43
{
"name": "thathoff/kirby-git-content",
"description": "Plugin to track changes to content in a git repository.",
"type": "kirby-plugin",
"license": "MIT",
"version": "5.2.0",
"authors": [
{
"name": "Markus Denhoff",
"email": "[email protected]"
},
{
"name": "reinorange GmbH",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/thathoff/kirby-git-content/issues",
"source": "https://github.com/thathoff/kirby-git-content"
},
"require": {
"czproject/git-php": "^4.0.1",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"getkirby/cms": "^3.6.0|^4.0.0"
},
"autoload": {
"psr-4": {
"Thathoff\\GitContent\\": "src/"
}
},
"extra": {
"installer-name": "git-content",
"kirby-cms-path": false
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}