-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.03 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
46
47
48
49
50
51
{
"name": "oblik/kirby-git",
"description": "Shows you Git changes in the Kirby panel and allows you to add/commit/push them, manually or automatically.",
"license": "MIT",
"version": "2.0.0",
"type": "kirby-plugin",
"keywords": [
"kirby",
"kirby-plugin"
],
"authors": [
{
"name": "Oblik Studio",
"email": "[email protected]",
"homepage": "https://oblik.studio/"
},
{
"name": "Hristiyan Dodov",
"email": "[email protected]",
"homepage": "https://dodov.dev/"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/OblikStudio"
}
],
"support": {
"issues": "https://github.com/OblikStudio/kirby-git/issues",
"source": "https://github.com/OblikStudio/kirby-git"
},
"scripts": {
"fix": "php-cs-fixer fix"
},
"require": {
"getkirby/cms": "^4",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2"
},
"extra": {
"installer-name": "git"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}