generated from bnomei/kirby3-with-public-folder-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (46 loc) · 1.02 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
{
"name": "modufolio/kirby-appkit",
"description": "Appkit for Kirby CMS 4",
"license": "MIT",
"type": "template",
"keywords": [
"kirby",
"cms"
],
"authors": [
{
"name": "Maarten Thiebou"
}
],
"require": {
"php": "^8.2",
"getkirby/cms": "4.*",
"illuminate/console": "^8.0",
"illuminate/events": "^8.0",
"illuminate/database": "^8.0",
"ext-sqlite3": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 -t public kirby/router.php"
],
"fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix app",
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}