Advertisement
Guest User

composer.json

a guest
Jan 22nd, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.40 KB | None | 0 0
  1. {
  2.   "name": "roots/bedrock",
  3.   "type": "project",
  4.   "license": "MIT",
  5.   "description": "A modern WordPress stack",
  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": "http://wpackagist.org"
  33.     },
  34.     {
  35.       "type": "git",
  36.       "url": "https://github.com/kkern/WP-Aqua-Resizer.git"
  37.     },
  38.     {
  39.       "type": "vcs",
  40.       "url": "git@bitbucket.org:****/commercial-plugins.git"
  41.     }
  42.   ],
  43.   "require": {
  44.     "php": ">=5.5",
  45.     "composer/installers": "~1.0.12",
  46.     "vlucas/phpdotenv": "^2.0.1",
  47.     "johnpbloch/wordpress": "4.3.1",
  48.     "roots/soil": "3.6.0",
  49.  
  50.     "kkern/WP-Aqua-Resizer": "master",
  51.  
  52.     "wpackagist-plugin/w3-total-cache": "*",
  53.     "wpackagist-plugin/wp-mail-smtp": "*",
  54.     "wpackagist-plugin/wp-cfm": "1.4.3",
  55.     "wpackagist-plugin/wordpress-seo": "*",
  56.     "wpackagist-plugin/image-widget": "*",
  57.     "wpackagist-plugin/antispam-bee": "*",
  58.     "wpackagist-plugin/simple-page-ordering": "*",
  59.     "wpackagist-plugin/simple-301-redirects": "*",
  60.     "wpackagist-plugin/wordfence": "6.0.22",
  61.     "wpackagist-plugin/bulk-page-creator": "1.0.9",
  62.     "wpackagist-plugin/iwp-client": "1.5.0",
  63.     "wpackagist-plugin/disable-comments": "1.3.2",
  64.  
  65.     "regenrek/commercial-plugins" : "*"
  66.   },
  67.   "extra": {
  68.     "installer-paths": {
  69.       "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
  70.       "web/app/plugins/{$name}/": ["type:wordpress-plugin"],
  71.       "web/app/themes/{$name}/": ["type:wordpress-theme"]
  72.     },
  73.     "wordpress-install-dir": "web/wp"
  74.   },
  75.   "minimum-stability": "dev",
  76.   "scripts": {
  77.     "autoload": {
  78.       "psr-0": {
  79.         "Installer": "."
  80.       }
  81.     },
  82.     "post-install-cmd": [
  83.       "./scripts/copy_commercial_plugins"
  84.     ],
  85.     "post-update-cmd": [
  86.       "./scripts/copy_commercial_plugins"
  87.     ]
  88.   }
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement