-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 940 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
32
{
"name": "percipioglobal/craft-plugin-playground",
"description": "Percipio.London Craft CMS plugin development environment scaffolding",
"version": "1.0.1",
"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/example.env', './cms/.env');\"",
"@php -r \"unlink('composer.json');\"",
"@php -r \"unlink('composer.lock');\"",
"@php -r \"unlink('LICENSE.md');\"",
"@php -r \"unlink('README.md');\""
]
}
}