forked from craftcms/craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.37 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
50
51
52
{
"name": "artmem/craft",
"description": "artmem Craft 3 CMS scaffolding project",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"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"
},
"minimum-stability": "RC",
"require": {
"php": ">=7.0.0",
"craftcms/cms": "^3.0.0-beta.29",
"vlucas/phpdotenv": "^2.4.0",
"roave/security-advisories": "dev-master",
"nystudio107/craft3-multi-environment": "^1.0.5",
"nystudio107/craft-scripts": "^1.2.4",
"nystudio107/craft3-eagerbeaver": "^1.0.0",
"nystudio107/craft3-imageoptimize": "^1.3.2",
"nystudio107/craft3-typogrify": "^1.1.1",
"zurb/foundation": "^6.4.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@composer dump-autoload -o",
"@php craft setup/welcome",
"@php nys-setup welcome"
]
}
}