Last active
August 29, 2015 14:16
-
-
Save richjenks/9537e309247a3bbee59a to your computer and use it in GitHub Desktop.
Composer config for WordPress Packagist (http://wpackagist.org/)
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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
} | |
], | |
"autoload": { | |
"files": [ | |
"vendor/plugin-folder/plugin.php" | |
] | |
}, | |
"extra": { | |
"installer-paths": { | |
"vendor/{$name}/": ["type:wordpress-plugin", "type:wordpress-theme"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment