Files
islandpferde-site/composer.json
Joseph Kisler ae40b1c8b4 Initial Bedrock WordPress setup
- WordPress 6.9 via Bedrock
- kurs-booking Plugin (Eigenentwicklung)
- Rodiar Theme + Child
- Lizenz-Plugins: Elementor Pro, RevSlider, Rank Math Pro, Rodiar Addons
- Free Plugins via Composer
- Docker-ready für Coolify
2025-12-17 11:13:36 +01:00

81 lines
2.3 KiB
JSON

{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock", "composer", "roots", "wordpress", "wp", "wp-config"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"repositories": [
{
"name": "wpackagist",
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
}
],
"require": {
"php": ">=8.1",
"composer/installers": "^2.2",
"vlucas/phpdotenv": "^5.5",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "6.9",
"roots/wp-config": "1.0.0",
"wpackagist-theme/twentytwentyfive": "^1.0",
"wpackagist-plugin/contact-form-7": "^6.1",
"wpackagist-plugin/cookie-law-info": "^3.3",
"wpackagist-plugin/duplicate-post": "^4.5",
"wpackagist-plugin/elementor": "^3.33",
"wpackagist-plugin/fluent-smtp": "^2.2",
"wpackagist-plugin/host-webfonts-local": "^6.0",
"wpackagist-plugin/matomo": "^5.6",
"wpackagist-plugin/redis-cache": "^2.7",
"wpackagist-plugin/seo-by-rank-math": "^1.0",
"wpackagist-plugin/simple-cloudflare-turnstile": "^1.35"
},
"require-dev": {
"laravel/pint": "^1.18"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"lint": "pint --test",
"lint:fix": "pint"
}
}