diff -r 000000000000 -r 800e4a6ab128 src/composer.json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/composer.json Tue Apr 23 15:50:12 2019 +0200 @@ -0,0 +1,65 @@ +{ + "name": "roots/bedrock", + "type": "project", + "license": "MIT", + "description": "WordPress boilerplate with modern development tools, 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" + }, + "config": { + "preferred-install": "dist" + }, + "repositories": [ + { + "type": "composer", + "url": "https://wpackagist.org" + } + ], + "require": { + "php": ">=7.1", + "composer/installers": "^1.4", + "vlucas/phpdotenv": "^3.0.0", + "oscarotero/env": "^1.1.0", + "roots/wordpress": "5.1.1", + "roots/wp-config": "1.0.0", + "roots/wp-password-bcrypt": "1.0.0", + "wp-cli/wp-cli-bundle": "*" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.0.2", + "roave/security-advisories": "dev-master" + }, + "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": { + "post-root-package-install": [ + "php -r \"copy('.env.example', '.env');\"" + ], + "test": [ + "phpcs" + ] + } +}