-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 884 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
33
34
35
36
37
38
{
"name": "craftcms/starter-blog",
"description": "A Craft CMS blog site starter with Tailwind CSS",
"type": "project",
"license": "0BSD",
"require": {
"clubstudioltd/craft-asset-rev": "^6.0",
"craftcms/cms": "^3.7",
"craftcms/gatsby-helper": "^1.1",
"craftcms/redactor": "^2.5.0",
"nystudio107/craft-typogrify": "^1.1",
"vlucas/phpdotenv": "^2.4.0",
"wrav/oembed": "^1.1"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": [
"@php craft clear-caches/all"
],
"post-install-cmd": [
"@php craft clear-caches/all"
]
}
}