-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.14 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
{
"name": "Barayamal/barayamal-design",
"type": "project",
"license": "proprietary",
"description": "A modular design library built on Craft CMS for Barayamal.",
"homepage": "https://barayamal.com.au",
"authors": [
{
"name": "Cameron Morgan",
"email": "[email protected]",
"homepage": "https://cameron-morgan.com"
}
],
"repositories": [
{ "type": "composer", "url": "https://repo.repman.io" },
{ "packagist": false }
],
"require": {
"clubstudioltd/craft-asset-rev": "6.0.2",
"craftcms/cms": "^3.5.10",
"craftcms/mailgun": "1.4.3",
"topshelfcraft/wordsmith": "3.3.0.1",
"vlucas/phpdotenv": "^3.4.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}