-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 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
41
42
43
44
45
46
47
48
49
{
"name": "genxbe/k3x-cli-tools",
"description": "A bunch of usefull tools to use with the Kirby CLI",
"version": "0.0.4",
"keywords": [
"genxbe",
"k3x-cli-tools",
"kirby",
"plugin",
"cli",
"commandline",
"terminal",
"getkirby",
"kirby3",
"kirby3-cms",
"kirby3-plugin"
],
"type": "kirby-plugin",
"license": "MIT",
"homepage": "https://github.com/genxbe/k3x-cli-tools",
"authors": [
{
"name": "Sam Serrien",
"email": "[email protected]",
"homepage": "https://genx.be"
}
],
"require": {
"php": "^8.0",
"getkirby/composer-installer": "^1.2",
"php-school/cli-menu": "^4.3",
"nunomaduro/termwind": "^1.14",
"bnomei/autoloader-for-kirby": "^1.7"
},
"autoload": {
"psr-4": {
"X\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "k3x-cli-tools"
}
}