-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jalendport/spark-craft",
"description": "Craft CMS starter project",
"version": "1.0.0-alpha.2",
"type": "project",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "0BSD",
"authors": [
{
"name": "Jalen Davenport",
"email": "hello@jalendport.com",
"homepage": "https://jalendport.com",
"role": "Developer"
}
],
"support": {
"email": "support@jalendport.com",
"issues": "https://github.com/jalendport/spark-craft/issues",
"source": "https://github.com/jalendport/spark-craft",
"docs": "https://github.com/jalendport/spark-craft/blob/master/README.MD"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jalendport"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"craftcms/generator": "^2.0.0",
"yiisoft/yii2-shell": "^2.0.0"
},
"autoload": {
"psr-4": {
"modules\\": "src/modules/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.3"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || rename('.env.example', '.env');\"",
"@php craft setup/keys",
"@php -r \"file_exists('composer.json.project') && unlink('composer.json');\"",
"@php -r \"file_exists('composer.json.project') && rename('composer.json.project', 'composer.json');\"",
"@composer dump-autoload -o"
]
}
}