Created
August 18, 2014 07:13
-
-
Save stefthoen/9ebc4da2b6d9d0ed02f1 to your computer and use it in GitHub Desktop.
Voorbeeld composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "roots/bedrock", | |
"type": "project", | |
"license": "MIT", | |
"description": "A modern WordPress stack", | |
"homepage": "http://roots.io/wordpress-stack/", | |
"authors": [ | |
{ | |
"name": "Scott Walkinshaw", | |
"email": "[email protected]", | |
"homepage": "https://github.com/swalkinshaw" | |
}, | |
{ | |
"name": "Ben Word", | |
"email": "[email protected]", | |
"homepage": "https://github.com/retlehs" | |
} | |
], | |
"keywords": [ | |
"wordpress", "stack", "capistrano", "composer", "vagrant", "wp" | |
], | |
"support": { | |
"issues": "https://github.com/roots/bedrock/issues", | |
"forum": "http://discourse.roots.io/category/bedrock" | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"generate-salts": true | |
}, | |
"autoload": { | |
"psr-0": {"Bedrock\\Installer": "scripts"} | |
}, | |
"scripts": { | |
"post-root-package-install": ["Bedrock\\Installer::addSalts"] | |
}, | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "wordpress/wordpress", | |
"version": "3.9.1", | |
"type": "webroot", | |
"dist": { | |
"type": "zip", | |
"url": "https://wordpress.org/wordpress-3.9.1.zip" | |
}, | |
"require" : { | |
"fancyguy/webroot-installer": "1.1.0" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "deliciousbrains/wp-migrate-db-pro", | |
"version": "1.4.1", | |
"type": "wordpress-plugin", | |
"dist": { | |
"type": "zip", | |
"url": "https://deliciousbrains.com/?wc-api=delicious-brains&request=download&licence_key=your_license_key&site_url=dev.paprikapatterns.com" | |
}, | |
"require" : { | |
"composer/installers": "*" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "deliciousbrains/wp-migrate-db-pro-media-files", | |
"version": "1.1.4", | |
"type": "wordpress-plugin", | |
"dist": { | |
"type": "zip", | |
"url": "https://deliciousbrains.com/?wc-api=delicious-brains&request=download&licence_key=your_license_key&slug=wp-migrate-db-pro-media-files&site_url=dev.paprikapatterns.com" | |
}, | |
"require" : { | |
"composer/installers": "*" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "advanced-custom-fields/acf-pro", | |
"type": "wordpress-plugin", | |
"version": "5.0.3", | |
"dist": { | |
"type": "zip", | |
"url": "http://connect.advancedcustomfields.com/index.php?p=pro&a=download&k=code_waarschijnlijk_de_key" | |
}, | |
"require" : { | |
"composer/installers": "*" | |
} | |
} | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "norcross/airplane-mode", | |
"type": "wordpress-plugin", | |
"version": "0.0.1", | |
"dist": { | |
"type": "zip", | |
"url": "https://github.com/norcross/airplane-mode/archive/master.zip" | |
}, | |
"require" : { | |
"composer/installers": "*" | |
} | |
} | |
} | |
], | |
"require": { | |
"php": ">=5.3.2", | |
"wordpress/wordpress": "3.9.1", | |
"fancyguy/webroot-installer": "1.1.0", | |
"composer/installers": "v1.0.12", | |
"vlucas/phpdotenv": "~1.0.6", | |
"deliciousbrains/wp-migrate-db-pro": "*", | |
"deliciousbrains/wp-migrate-db-pro-media-files": "1.1.4", | |
"advanced-custom-fields/acf-pro": "5.0.3", | |
"wpackagist-plugin/woocommerce": "2.1.12", | |
"wpackagist-plugin/regenerate-thumbnails": "2.2.4", | |
"wpackagist-plugin/search-and-replace": "2.6.5", | |
"wpackagist-plugin/debug-bar": "0.8.1", | |
"wpackagist-plugin/ewww-image-optimizer": "1.9.3", | |
"wpackagist-plugin/p3-profiler": "1.5.0", | |
"wpackagist-plugin/wp-optimize": "1.8.6", | |
"wpackagist-plugin/relevanssi": "3.3.5", | |
"wpackagist-plugin/wordpress-seo": "1.5.3.3", | |
"wpackagist-plugin/limit-login-attempts": "1.7.1", | |
"wpackagist-plugin/akismet": "3.0.1", | |
"roots/wp-stage-switcher": "1.0.1", | |
"norcross/airplane-mode": "0.0.1" | |
}, | |
"extra": { | |
"installer-paths": { | |
"web/app/plugins/{$name}/": ["type:wordpress-plugin"], | |
"web/app/themes/{$name}/": ["type:wordpress-theme"] | |
}, | |
"webroot-dir": "web/wp", | |
"webroot-package": "wordpress/wordpress" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment