Skip to content

Commit f921700

Browse files
Merge pull request #3 from fortytwostudio/master
David Udpates
2 parents 404a948 + 1665c36 commit f921700

18 files changed

+3224
-689
lines changed

composer.json

+48-44
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,51 @@
11
{
2-
"name": "fortytwo-studio/craft-cms-boilerplate",
3-
"description": "This is a boilerplate for Craft CMS",
4-
"license": "MIT",
5-
"require": {
6-
"adigital/cookie-consent-banner": "1.2.9",
7-
"craftcms/aws-s3": "1.3.0",
8-
"craftcms/cms": "3.7.41",
9-
"craftcms/redactor": "2.10.8",
10-
"ether/seo": "3.7.4",
11-
"solspace/craft-freeform": "3.13.9",
12-
"spicyweb/craft-neo": "2.13.9",
13-
"supercool/buttonbox": "^2.0.4",
14-
"verbb/navigation": "1.4.26",
15-
"verbb/super-table": "2.7.1",
16-
"vlucas/phpdotenv": "^3.4.0",
17-
"wrav/oembed": "1.3.15"
18-
},
19-
"require-dev": {
20-
"yiisoft/yii2-shell": "^2.0.3"
21-
},
22-
"autoload": {
23-
"psr-4": {
24-
"modules\\": "modules/"
2+
"name": "fortytwo-studio/craft-cms-boilerplate",
3+
"description": "This is a boilerplate for Craft CMS",
4+
"license": "MIT",
5+
"require": {
6+
"adigital/cookie-consent-banner": "1.2.9",
7+
"craftcms/aws-s3": "1.3.0",
8+
"craftcms/cms": "3.7.57",
9+
"craftcms/redactor": "2.10.10",
10+
"ether/seo": "3.7.4",
11+
"solspace/craft-freeform": "3.13.20",
12+
"spicyweb/craft-neo": "2.13.15",
13+
"supercool/buttonbox": "^3.0.2",
14+
"verbb/buttonbox": "^3.1",
15+
"verbb/navigation": "1.4.28",
16+
"verbb/super-table": "2.7.3",
17+
"vlucas/phpdotenv": "^3.4.0",
18+
"wrav/oembed": "1.3.18"
19+
},
20+
"require-dev": {
21+
"yiisoft/yii2-shell": "^2.0.5"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"modules\\": "modules/"
26+
}
27+
},
28+
"config": {
29+
"sort-packages": true,
30+
"optimize-autoloader": true,
31+
"platform": {
32+
"php": "7.4"
33+
},
34+
"allow-plugins": {
35+
"*": true
36+
}
37+
},
38+
"scripts": {
39+
"post-root-package-install": [
40+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
41+
],
42+
"post-install-cmd": [
43+
"./craft setup/security-key",
44+
"./craft setup/app-id",
45+
"./craft setup/db",
46+
"./craft db/restore ./storage/setup-boilerplate/default_db.sql",
47+
"npm install --silent",
48+
"php ./storage/setup-boilerplate/after_setup.php"
49+
]
2550
}
26-
},
27-
"config": {
28-
"sort-packages": true,
29-
"optimize-autoloader": true,
30-
"platform": {
31-
"php": "7.3"
32-
}
33-
},
34-
"scripts": {
35-
"post-root-package-install": [
36-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
37-
],
38-
"post-install-cmd": [
39-
"./craft setup/security-key",
40-
"./craft setup/app-id",
41-
"./craft setup/db",
42-
"./craft db/restore ./storage/setup-boilerplate/default_db.sql",
43-
"npm install --silent",
44-
"php ./storage/setup-boilerplate/after_setup.php"
45-
]
46-
}
4751
}

0 commit comments

Comments
 (0)