-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
31 lines (31 loc) · 932 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": "nystudio107/plugindev",
"description": "nystudio107 Craft CMS plugin development environment scaffolding",
"keywords": [
"craft",
"cms",
"craftcms",
"plugin",
"development"
],
"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_v3/example.env', './cms_v3/.env');\"",
"@php -r \"copy('./cms_v4/example.env', './cms_v4/.env');\"",
"@php -r \"@unlink('composer.json');\"",
"@php -r \"@unlink('composer.lock');\"",
"@php -r \"@unlink('LICENSE.md');\""
]
}
}