Advertisement
Guest User

bedrockcomposerjson

a guest
Jun 20th, 2017
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.78 KB | None | 0 0
  1. {
  2.   "name": "roots/bedrock",
  3.   "type": "project",
  4.   "license": "MIT",
  5.   "description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
  6.   "homepage": "https://roots.io/bedrock/",
  7.   "authors": [
  8.     {
  9.       "name": "Scott Walkinshaw",
  10.       "email": "scott.walkinshaw@gmail.com",
  11.       "homepage": "https://github.com/swalkinshaw"
  12.     },
  13.     {
  14.       "name": "Ben Word",
  15.       "email": "ben@benword.com",
  16.       "homepage": "https://github.com/retlehs"
  17.     }
  18.   ],
  19.   "keywords": [
  20.     "bedrock", "roots", "wordpress", "stack", "composer", "vagrant", "wp"
  21.   ],
  22.   "support": {
  23.     "issues": "https://github.com/roots/bedrock/issues",
  24.     "forum": "https://discourse.roots.io/category/bedrock"
  25.   },
  26.   "config": {
  27.     "preferred-install": "dist"
  28.   },
  29.   "repositories": [
  30.     {
  31.       "type": "composer",
  32.       "url": "https://wpackagist.org"
  33.     },
  34.     {
  35.       "type": "git",
  36.       "url": "git@bitbucket.org:ttamnedlog/my-theme.git"
  37.     }
  38.   ],
  39.   "require": {
  40.     "php": ">=5.6",
  41.     "composer/installers": "~1.2.0",
  42.     "vlucas/phpdotenv": "^2.0.1",
  43.     "johnpbloch/wordpress": "4.8.0",
  44.     "oscarotero/env": "^1.0",
  45.     "roots/wp-password-bcrypt": "1.0.0",
  46.     "ttamnedlog/my-theme": "dev-master"
  47.   },
  48.   "require-dev": {
  49.     "squizlabs/php_codesniffer": "^2.5.1"
  50.   },
  51.   "extra": {
  52.     "installer-paths": {
  53.       "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
  54.       "web/app/plugins/{$name}/": ["type:wordpress-plugin"],
  55.       "web/app/themes/{$name}/": ["type:wordpress-theme"]
  56.     },
  57.     "wordpress-install-dir": "web/wp"
  58.   },
  59.   "scripts": {
  60.     "post-root-package-install": [
  61.       "php -r \"copy('.env.example', '.env');\""
  62.     ],
  63.     "test": [
  64.       "vendor/bin/phpcs"
  65.     ]
  66.   }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement