Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .ddev/.env.web
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CRAFT_DB_DATABASE="db"
CRAFT_DB_PASSWORD="db"
CRAFT_DB_DRIVER="mysql"
CRAFT_DB_PORT="3306"
CRAFT_WEB_ROOT="/var/www/html/web"
PRIMARY_SITE_URL="https://viget-craft-starter.ddev.site"
CRAFT_DB_SERVER="db"
CRAFT_DB_USER="db"
MAILPIT_SMTP_HOSTNAME="127.0.0.1"
MAILPIT_SMTP_PORT="1025"
2 changes: 1 addition & 1 deletion .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: viget-craft-starter
type: craftcms
docroot: web
php_version: '8.2'
php_version: '8.4'
webserver_type: nginx-fpm
xdebug_enabled: false
additional_hostnames: []
Expand Down
3 changes: 3 additions & 0 deletions .ddev/php/php-local.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[PHP]
display_errors = On
error_reporting = ~E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED;
10 changes: 3 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"verbb/expanded-singles": "3.0.3",
"verbb/navigation": "3.0.15",
"viget/craft-classnames": "3.0.0",
"viget/craft-parts-kit": "dev-main",
"viget/craft-parts-kit": "^1.0",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
Expand All @@ -41,7 +41,7 @@
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2"
"php": "8.4"
}
},
"scripts": {
Expand Down Expand Up @@ -69,10 +69,6 @@
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
},
{
"type": "github",
"url": "https://github.com/vigetlabs/craft-parts-kit.git"
}
]
}
}
Loading