forked from ben-rogerson/craft-storybook-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.32 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
{
"name": "ben-rogerson/craft-storybook-starter",
"description": "This starter sets up everything for you to be productive in Storybook and Craft and makes it easy to produce a living styleguide for your site or app.",
"keywords": [
"craft",
"cms",
"craftcms",
"project",
"storybook",
"styleguide"
],
"license": "Unlicense",
"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"
},
"require": {
"craftcms/cms": "^3.0.0",
"vlucas/phpdotenv": "^2.4.0"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"copy('.env.example', '.env');\"",
"@php -r \"unlink('composer.json');\"",
"@php -r \"unlink('LICENSE.md');\"",
"@php -r \"unlink('README.md');\"",
"@php -r \"rename('composer.json.default', 'composer.json');\"",
"@composer dump-autoload -o",
"@php craft setup/welcome"
]
}
}