Files
blog/composer.json
2025-08-28 13:40:08 +00:00

105 lines
3.0 KiB
JSON

{
"name": "hvg/blog",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "HVG Development",
"email": "dev@hvg.hu",
"homepage": "https://github.com/hvg-dev"
},
{
"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": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
},
{
"type": "vcs",
"url": "https://github.com/hvg-dev/hvg-blog-general"
}
],
"require": {
"php": ">=7.4 <8.4",
"ext-gd": "*",
"ext-redis": "*",
"ext-mbstring": "*",
"ext-soap": "*",
"ext-exif": "*",
"ext-imagick": "*",
"ext-intl": "*",
"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.8.1",
"roots/wp-config": "^1.0.0",
"humanmade/s3-uploads": "^3.0",
"hvg-dev/hvg-blog-general": "dev-main",
"wpackagist-theme/twentytwentyfive": "^1.0",
"wpackagist-plugin/disable-wordpress-updates": "^1.8",
"wpackagist-plugin/disable-comments": "^2.5",
"wpackagist-plugin/wp-webhooks": "^3.3",
"wpackagist-plugin/two-factor": "^0.14.0",
"wpackagist-plugin/user-role-editor": "^4.64",
"wpackagist-plugin/comments-from-facebook": "^2.6",
"wpackagist-plugin/acme-fix-images": "^2.0",
"wpackagist-plugin/ad-inserter": "^2.8",
"wpackagist-plugin/wp-api-swaggerui": "^1.2",
"wpackagist-plugin/cloudflare": "^4.12",
"wpackagist-plugin/menu-image": "^3.13",
"wpackagist-plugin/code-snippets": "^3.6",
"wpackagist-plugin/saml-sso-wp-single-sign-on": "^1.4"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*",
"roave/security-advisories": "dev-latest",
"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": {
"project-init": "php -v",
"lint": "pint --test",
"lint:fix": "pint"
}
}