-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
31 lines (31 loc) · 931 Bytes
/
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
{
"name": "craftcms/craft",
"description": "nystudio107 Craft 3 CMS scaffolding project",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "0BSD",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/cms/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs",
"rss": "https://craftcms.com/changelog.rss"
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"copy('./cms/example.env', './cms/.env');\"",
"@php -r \"copy('./scripts/example.env.sh', './scripts/.env.sh');\"",
"@php -r \"@unlink('composer.json');\"",
"@php -r \"@unlink('composer.lock');\"",
"@php -r \"@unlink('LICENSE.md');\"",
"@php -r \"@unlink('README.md');\""
]
}
}