Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.73 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", "composer", "roots", "wordpress", "wp", "wp-config"
  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.   "require": {
  36.     "php": ">=7.1",
  37.     "composer/installers": "^1.4",
  38.     "vlucas/phpdotenv": "^3.0.0",
  39.     "oscarotero/env": "^1.1.0",
  40.     "roots/wordpress": "5.1",
  41.     "roots/wp-config": "1.0.0",
  42.     "roots/wp-password-bcrypt": "1.0.0",
  43.     "timber/timber": "^1.9"
  44.   },
  45.   "require-dev": {
  46.     "squizlabs/php_codesniffer": "^3.0.2",
  47.     "roave/security-advisories": "dev-master"
  48.   },
  49.   "extra": {
  50.     "installer-paths": {
  51.       "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
  52.       "web/app/plugins/{$name}/": ["type:wordpress-plugin"],
  53.       "web/app/themes/{$name}/": ["type:wordpress-theme"]
  54.     },
  55.     "wordpress-install-dir": "web/wp"
  56.   },
  57.   "scripts": {
  58.     "post-root-package-install": [
  59.       "php -r \"copy('.env.example', '.env');\""
  60.     ],
  61.     "test": [
  62.       "phpcs"
  63.     ]
  64.   }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement