-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "jalendport/spark-craft",
"description": "Craft CMS starter project",
"version": "1.0.0-beta.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": {
"php": "^8.4"
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\"",
"@php -r \"file_exists('composer.json.project') && file_exists('composer.lock') && unlink('composer.lock');\"",
"@php -r \"file_exists('composer.json.project') && unlink('composer.json');\"",
"@php -r \"file_exists('composer.json.project') && rename('composer.json.project', 'composer.json');\""
]
}
}